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.
52 lines
919 B
52 lines
919 B
3 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef PORTAL_CLIENTMODE_H
|
||
|
#define PORTAL_CLIENTMODE_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;
|
||
|
}
|
||
|
|
||
|
class ClientModePortalNormal : public ClientModeShared
|
||
|
{
|
||
|
DECLARE_CLASS( ClientModePortalNormal, ClientModeShared );
|
||
|
|
||
|
private:
|
||
|
|
||
|
// IClientMode overrides.
|
||
|
public:
|
||
|
|
||
|
ClientModePortalNormal();
|
||
|
virtual ~ClientModePortalNormal();
|
||
|
|
||
|
virtual void Init();
|
||
|
virtual void InitViewport();
|
||
|
|
||
|
|
||
|
private:
|
||
|
|
||
|
// void UpdateSpectatorMode( void );
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
extern IClientMode *GetClientModeNormal();
|
||
|
extern ClientModePortalNormal* GetClientModePortalNormal();
|
||
|
|
||
|
|
||
|
#endif // PORTAL_CLIENTMODE_H
|