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

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


#include "weapon_tfc_shotgun.h"


#if defined( CLIENT_DLL )

	#define CTFCNailgun C_TFCNailgun

#endif


// ----------------------------------------------------------------------------- //
// CTFCNailgun class definition.
// ----------------------------------------------------------------------------- //

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

	
	CTFCNailgun();

	virtual TFCWeaponID GetWeaponID( void ) const;
	virtual void PrimaryAttack();
	virtual void SecondaryAttack();


// Overrideables.
public:

private:
	
	CTFCNailgun( const CTFCNailgun & ) {}

};


#endif // WEAPON_TFC_NAILGUN_H