summaryrefslogtreecommitdiff
path: root/game/client/portal/c_neurotoxin_countdown.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/portal/c_neurotoxin_countdown.h')
-rw-r--r--game/client/portal/c_neurotoxin_countdown.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/game/client/portal/c_neurotoxin_countdown.h b/game/client/portal/c_neurotoxin_countdown.h
new file mode 100644
index 0000000..f258a01
--- /dev/null
+++ b/game/client/portal/c_neurotoxin_countdown.h
@@ -0,0 +1,39 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//
+//=============================================================================//
+#ifndef C_NEUROTOXIN_COUNTDOWN_H
+#define C_NEUROTOXIN_COUNTDOWN_H
+
+#include "cbase.h"
+#include "utlvector.h"
+
+
+class C_NeurotoxinCountdown : public C_BaseEntity
+{
+public:
+ DECLARE_CLASS( C_NeurotoxinCountdown, CBaseEntity );
+ DECLARE_CLIENTCLASS();
+
+ C_NeurotoxinCountdown();
+ virtual ~C_NeurotoxinCountdown();
+
+ bool IsEnabled( void ) { return m_bEnabled; }
+
+ int GetMinutes( void );
+ int GetSeconds( void );
+ int GetMilliseconds( void );
+
+private:
+
+ bool m_bEnabled;
+};
+
+
+extern CUtlVector< C_NeurotoxinCountdown* > g_NeurotoxinCountdowns;
+
+
+#endif //C_NEUROTOXIN_COUNTDOWN_H \ No newline at end of file