diff options
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 |