mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-15 20:12:37 +03:00
45 lines
766 B
C++
45 lines
766 B
C++
#ifndef WEAPON_AnnC_H
|
|
#define WEAPON_AnnC_H
|
|
|
|
#include "weapon_annabelle.h"
|
|
|
|
class CWeaponAnnabelleC1 : public CWeaponAnnabelle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponAnnabelleC1, CWeaponAnnabelle);
|
|
|
|
CWeaponAnnabelleC1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponAnnabelleC2 : public CWeaponAnnabelle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponAnnabelleC2, CWeaponAnnabelle);
|
|
|
|
CWeaponAnnabelleC2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponAnnabelleC3 : public CWeaponAnnabelle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponAnnabelleC3, CWeaponAnnabelle);
|
|
|
|
CWeaponAnnabelleC3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
#endif |