summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_obj_respawn_station.h
blob: 8b766f1780905f4070820e8cc51b74431dd138bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//========= 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