mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-13 20:21:06 +00:00
1
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose: Team spawnpoint entity
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
|
||||
#ifndef TF_TEAMSPAWNPOINT_H
|
||||
#define TF_TEAMSPAWNPOINT_H
|
||||
#pragma once
|
||||
|
||||
#include "baseentity.h"
|
||||
#include "EntityOutput.h"
|
||||
|
||||
class CTeam;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: points at which the player can spawn, restricted by team
|
||||
//-----------------------------------------------------------------------------
|
||||
class CTeamSpawnPoint : public CPointEntity
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS( CTeamSpawnPoint, CPointEntity );
|
||||
|
||||
void Activate( void );
|
||||
bool IsValid( CBasePlayer *pPlayer );
|
||||
|
||||
COutputEvent m_OnPlayerSpawn;
|
||||
|
||||
protected:
|
||||
int m_iDisabled;
|
||||
|
||||
void EnableSpawn( void );
|
||||
void DisableSpawn( void );
|
||||
|
||||
DECLARE_DATADESC();
|
||||
};
|
||||
|
||||
|
||||
#endif // TF_TEAMSPAWNPOINT_H
|
||||
Reference in New Issue
Block a user