You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
808 B
37 lines
808 B
5 years ago
|
//========= 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
|