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.
40 lines
1000 B
40 lines
1000 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef C_OBJ_RESPAWN_STATION_H
|
||
|
#define C_OBJ_RESPAWN_STATION_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose: Respawn Station object
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class C_ObjectRespawnStation : public C_BaseObject
|
||
|
{
|
||
|
DECLARE_CLASS( C_ObjectRespawnStation, C_BaseObject );
|
||
|
|
||
|
public:
|
||
|
DECLARE_CLIENTCLASS();
|
||
|
DECLARE_ENTITY_PANEL();
|
||
|
|
||
|
C_ObjectRespawnStation();
|
||
|
|
||
|
// Status
|
||
|
virtual void SetDormant( bool bDormant );
|
||
|
|
||
|
protected:
|
||
|
// A special panel to indicate which one's the respawn station
|
||
|
CPanelRegistration m_SelectedRespawnPanel;
|
||
|
|
||
|
private:
|
||
|
C_ObjectRespawnStation( const C_ObjectRespawnStation & ); // not defined, not accessible
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // C_OBJ_RESPAWN_STATION_H
|