mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-09 20:23:02 +03:00
48 lines
683 B
C++
48 lines
683 B
C++
#ifndef WEAPONAR3C_H
|
|
#define WEAPONAR3C_H
|
|
|
|
#include "OverCharged/weapon_ar3.h"
|
|
|
|
class CWeaponAr3C1 : public CWeaponAr3
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponAr3C1, CWeaponAr3);
|
|
|
|
CWeaponAr3C1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
class CWeaponAr3C2 : public CWeaponAr3
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponAr3C2, CWeaponAr3);
|
|
|
|
CWeaponAr3C2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
class CWeaponAr3C3 : public CWeaponAr3
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponAr3C3, CWeaponAr3);
|
|
|
|
CWeaponAr3C3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
#endif |