summaryrefslogtreecommitdiff
path: root/game/shared/tfc/weapon_tfc_knife.h
blob: e0c28260d5f2003f7bc0b11916149e4987303940 (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================//

#ifndef WEAPON_TFC_KNIFE_H
#define WEAPON_TFC_KNIFE_H
#ifdef _WIN32
#pragma once
#endif


#include "weapon_tfcbase.h"
#include "weapon_tfc_crowbar.h"


#if defined( CLIENT_DLL )

	#define CTFCKnife C_TFCKnife

#endif


// ----------------------------------------------------------------------------- //
// CTFCKnife class definition.
// ----------------------------------------------------------------------------- //

class CTFCKnife : public CTFCCrowbar
{
public:
	DECLARE_CLASS( CTFCKnife, CTFCCrowbar );
	DECLARE_NETWORKCLASS(); 
	DECLARE_PREDICTABLE();
	
	#ifndef CLIENT_DLL
		DECLARE_DATADESC();
	#endif

	
	CTFCKnife();

	virtual void Precache();

	virtual TFCWeaponID GetWeaponID( void ) const;


private:
	CTFCKnife( const CTFCKnife & ) {}
};


#endif // WEAPON_TFC_KNIFE_H