mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-09 20:23:02 +03:00
48 lines
739 B
C++
48 lines
739 B
C++
#ifndef WEAPON_DEAGLEC_H
|
|
#define WEAPON_DEAGLEC_H
|
|
|
|
#include "OverCharged/weapon_deagle.h"
|
|
|
|
class CWeaponDeagleC1 : public CWeaponDeagle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponDeagleC1, CWeaponDeagle);
|
|
|
|
CWeaponDeagleC1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
class CWeaponDeagleC2 : public CWeaponDeagle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponDeagleC2, CWeaponDeagle);
|
|
|
|
CWeaponDeagleC2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
class CWeaponDeagleC3 : public CWeaponDeagle
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponDeagleC3, CWeaponDeagle);
|
|
|
|
CWeaponDeagleC3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
#endif |