summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_obj_tower.cpp
blob: 14a0473e7fb00f487754a538c52cc21674acd293 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================//

#include "cbase.h"
#include "hud.h"
#include "commanderoverlay.h"
#include "c_baseobject.h"

// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
class C_ObjectTower : public C_BaseObject
{
	DECLARE_CLASS( C_ObjectTower, C_BaseObject );
public:
	DECLARE_CLIENTCLASS();

	C_ObjectTower();

private:
	C_ObjectTower( const C_ObjectTower & ); // not defined, not accessible
};

IMPLEMENT_CLIENTCLASS_DT(C_ObjectTower, DT_ObjectTower, CObjectTower)
END_RECV_TABLE()

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
C_ObjectTower::C_ObjectTower()
{
}

//=============================================================================
// Tower Ladder
//=============================================================================

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
class C_ObjectTowerLadder : public C_BaseAnimating
{
	DECLARE_CLASS( C_ObjectTowerLadder, C_BaseAnimating );
public:

	DECLARE_CLIENTCLASS();

	C_ObjectTowerLadder();

private:
	C_ObjectTowerLadder( const C_ObjectTowerLadder& ); // not defined, not accessible
};

IMPLEMENT_CLIENTCLASS_DT( C_ObjectTowerLadder, DT_ObjectTowerLadder, CObjectTowerLadder )
END_RECV_TABLE()

//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
C_ObjectTowerLadder::C_ObjectTowerLadder()
{
}