mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-09 20:23:02 +03:00
45 lines
755 B
C++
45 lines
755 B
C++
#ifndef WEAPON_GLC_H
|
|
#define WEAPON_GLC_H
|
|
|
|
#include "OverCharged/weapon_grenadelauncher.h"
|
|
|
|
class CWeaponGLC1 : public CWeaponGrenadelauncher
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponGLC1, CWeaponGrenadelauncher);
|
|
|
|
CWeaponGLC1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponGLC2 : public CWeaponGrenadelauncher
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponGLC2, CWeaponGrenadelauncher);
|
|
|
|
CWeaponGLC2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponGLC3 : public CWeaponGrenadelauncher
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponGLC3, CWeaponGrenadelauncher);
|
|
|
|
CWeaponGLC3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
#endif |