summaryrefslogtreecommitdiff
path: root/game/client/hl1/hl1_clientmode.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/hl1/hl1_clientmode.h')
-rw-r--r--game/client/hl1/hl1_clientmode.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/game/client/hl1/hl1_clientmode.h b/game/client/hl1/hl1_clientmode.h
new file mode 100644
index 0000000..c9f8ab6
--- /dev/null
+++ b/game/client/hl1/hl1_clientmode.h
@@ -0,0 +1,35 @@
+//========= 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 \ No newline at end of file