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.
35 lines
732 B
35 lines
732 B
3 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef HL1_CLIENTMODE_H
|
||
|
#define HL1_CLIENTMODE_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "clientmode_shared.h"
|
||
|
|
||
|
class ClientModeHL1Normal : public ClientModeShared
|
||
|
{
|
||
|
DECLARE_CLASS( ClientModeHL1Normal, ClientModeShared );
|
||
|
|
||
|
public:
|
||
|
ClientModeHL1Normal();
|
||
|
virtual ~ClientModeHL1Normal();
|
||
|
|
||
|
virtual void InitViewport();
|
||
|
|
||
|
virtual float GetViewModelFOV( void );
|
||
|
|
||
|
virtual int GetDeathMessageStartHeight( void );
|
||
|
};
|
||
|
|
||
|
|
||
|
extern IClientMode *GetClientModeNormal();
|
||
|
extern ClientModeHL1Normal* GetClientModeHL1Normal();
|
||
|
|
||
|
|
||
|
#endif // HL1_CLIENTMODE_H
|