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/server/tf/func_passtime_goalie_zone.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/server/tf/func_passtime_goalie_zone.h')
| -rw-r--r-- | game/server/tf/func_passtime_goalie_zone.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/game/server/tf/func_passtime_goalie_zone.h b/game/server/tf/func_passtime_goalie_zone.h new file mode 100644 index 0000000..9a0a515 --- /dev/null +++ b/game/server/tf/func_passtime_goalie_zone.h @@ -0,0 +1,31 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef FUNC_PASSTIME_GOALIE_ZONE_H +#define FUNC_PASSTIME_GOALIE_ZONE_H +#ifdef _WIN32 +#pragma once +#endif + +#include "triggers.h" + +DECLARE_AUTO_LIST( IFuncPasstimeGoalieZoneAutoList ); +class CTFPlayer; + +class CFuncPasstimeGoalieZone : public CBaseTrigger, public IFuncPasstimeGoalieZoneAutoList +{ +public: + DECLARE_CLASS( CFuncPasstimeGoalieZone, CBaseTrigger ); + DECLARE_DATADESC(); + virtual void Spawn() OVERRIDE; + + static bool BPlayerInAny( CTFPlayer *pPlayer ); + static bool BPlayerInFriendly( CTFPlayer *pPlayer ); + static bool BPlayerInEnemy( CTFPlayer *pPlayer ); +}; + +#endif // FUNC_PASSTIME_GOALIE_ZONE_H |