You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $Workfile: $
|
||
|
// $Date: $
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#if !defined( CLIENTMODE_HLNORMAL_H )
|
||
|
#define CLIENTMODE_HLNORMAL_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "clientmode_shared.h"
|
||
|
#include <vgui_controls/EditablePanel.h>
|
||
|
#include <vgui/Cursor.h>
|
||
|
|
||
|
class CHudViewport;
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
typedef unsigned long HScheme;
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class ClientModeHL2MPNormal : public ClientModeShared
|
||
|
{
|
||
|
public:
|
||
|
DECLARE_CLASS( ClientModeHL2MPNormal, ClientModeShared );
|
||
|
|
||
|
ClientModeHL2MPNormal();
|
||
|
~ClientModeHL2MPNormal();
|
||
|
|
||
|
virtual void Init();
|
||
|
virtual int GetDeathMessageStartHeight( void );
|
||
|
};
|
||
|
|
||
|
extern IClientMode *GetClientModeNormal();
|
||
|
extern vgui::HScheme g_hVGuiCombineScheme;
|
||
|
|
||
|
extern ClientModeHL2MPNormal* GetClientModeHL2MPNormal();
|
||
|
|
||
|
#endif // CLIENTMODE_HLNORMAL_H
|