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.
31 lines
810 B
31 lines
810 B
//========= 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
|