mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-09 20:23:02 +03:00
45 lines
792 B
C++
45 lines
792 B
C++
#ifndef WEAPON_SRC_H
|
|
#define WEAPON_SRC_H
|
|
|
|
#include "OverCharged/weapon_shockrifle.h"
|
|
|
|
class CWeaponShockRifleC1 : public CWeaponShockRifle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponShockRifleC1, CWeaponShockRifle);
|
|
|
|
CWeaponShockRifleC1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponShockRifleC2 : public CWeaponShockRifle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponShockRifleC2, CWeaponShockRifle);
|
|
|
|
CWeaponShockRifleC2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponShockRifleC3 : public CWeaponShockRifle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponShockRifleC3, CWeaponShockRifle);
|
|
|
|
CWeaponShockRifleC3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
#endif |