summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_obj_selfheal.cpp
blob: 5fec4e9eb4e762531475ca6795662756e6acebbe (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================//

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

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
class C_ObjectSelfHeal : public C_BaseObjectUpgrade
{
	DECLARE_CLASS( C_ObjectSelfHeal, C_BaseObjectUpgrade );
public:
	DECLARE_CLIENTCLASS();

	C_ObjectSelfHeal();

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

IMPLEMENT_CLIENTCLASS_DT(C_ObjectSelfHeal, DT_ObjectSelfHeal, CObjectSelfHeal)
END_RECV_TABLE()

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