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

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


#include "weapon_tfc_shotgun.h"


#if defined( CLIENT_DLL )

	#define CTFCSuperShotgun C_TFCSuperShotgun

#endif


// ----------------------------------------------------------------------------- //
// CTFCSuperShotgun class definition.
// ----------------------------------------------------------------------------- //

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

	
	CTFCSuperShotgun();

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


// Overrideables.
public:

private:
	
	CTFCSuperShotgun( const CTFCSuperShotgun & ) {}

};


#endif // WEAPON_TFC_SUPER_SHOTGUN_H