blob: 72440cc379b4a805dc99f814dd285dd512284c04 (
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 "basehlcombatweapon_shared.h"
#ifndef C_BASEHLCOMBATWEAPON_H
#define C_BASEHLCOMBATWEAPON_H
#ifdef _WIN32
#pragma once
#endif
class C_HLMachineGun : public C_BaseHLCombatWeapon
{
public:
DECLARE_CLASS( C_HLMachineGun, C_BaseHLCombatWeapon );
DECLARE_CLIENTCLASS();
};
class C_HLSelectFireMachineGun : public C_HLMachineGun
{
public:
DECLARE_CLASS( C_HLSelectFireMachineGun, C_HLMachineGun );
DECLARE_CLIENTCLASS();
};
class C_BaseHLBludgeonWeapon : public C_BaseHLCombatWeapon
{
public:
DECLARE_CLASS( C_BaseHLBludgeonWeapon, C_BaseHLCombatWeapon );
DECLARE_CLIENTCLASS();
};
#endif // C_BASEHLCOMBATWEAPON_H
|