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.
39 lines
776 B
39 lines
776 B
3 years ago
|
//========= 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
|