mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-09 20:23:02 +03:00
45 lines
682 B
C++
45 lines
682 B
C++
#ifndef WEAPON_USPC_H
|
|
#define WEAPON_USPC_H
|
|
|
|
#include "OverCharged/weapon_usp.h"
|
|
|
|
class CWeaponUSPC1 : public CWeaponUSP
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponUSPC1, CWeaponUSP);
|
|
|
|
CWeaponUSPC1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponUSPC2 : public CWeaponUSP
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponUSPC2, CWeaponUSP);
|
|
|
|
CWeaponUSPC2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
class CWeaponUSPC3 : public CWeaponUSP
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeaponUSPC3, CWeaponUSP);
|
|
|
|
CWeaponUSPC3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
};
|
|
|
|
#endif |