This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: CTF Powerup Volume.
//
//=============================================================================//
#ifndef FUNC_POWERUP_VOLUME_H
#define FUNC_POWERUP_VOLUME_H
#ifdef _WIN32
#pragma once
#endif
#include "triggers.h"
DECLARE_AUTO_LIST( IFuncPowerupVolumeAutoList );
//=============================================================================
//
// CTF Powerup Volume class.
//
class CPowerupVolume : public CTriggerMultiple, public IFuncPowerupVolumeAutoList
{
public:
DECLARE_CLASS( CPowerupVolume, CTriggerMultiple );
CPowerupVolume();
void Spawn( void );
void Precache( void );
void Touch( CBaseEntity *pOther );
bool IsDisabled( void );
void SetDisabled( bool bDisabled );
int GetNumTimesUsed( void ) { return m_nNumberOfTimesUsed; }
void SetNumTimesUsed( int NumberOfTimesUsed ) { m_nNumberOfTimesUsed = NumberOfTimesUsed; }
int m_nNumberOfTimesUsed;
private:
bool m_bDisabled;
};
#endif // FUNC_POWERUP_VOLUME_H