diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/client/portal/c_neurotoxin_countdown.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/client/portal/c_neurotoxin_countdown.h')
| -rw-r--r-- | game/client/portal/c_neurotoxin_countdown.h | 39 |
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 |