mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-15 20:12:37 +03:00
48 lines
783 B
C++
48 lines
783 B
C++
#ifndef WEAPON_DISPC_H
|
|
#define WEAPON_DISPC_H
|
|
|
|
#include "OverCharged/weapon_displacer.h"
|
|
|
|
class CWeapondisplacerC1 : public CWeapondisplacer
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeapondisplacerC1, CWeapondisplacer);
|
|
|
|
CWeapondisplacerC1() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
class CWeapondisplacerC2 : public CWeapondisplacer
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeapondisplacerC2, CWeapondisplacer);
|
|
|
|
CWeapondisplacerC2() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
class CWeapondisplacerC3 : public CWeapondisplacer
|
|
{
|
|
DECLARE_DATADESC();
|
|
public:
|
|
DECLARE_CLASS(CWeapondisplacerC3, CWeapondisplacer);
|
|
|
|
CWeapondisplacerC3() : BaseClass() {};
|
|
|
|
DECLARE_SERVERCLASS();
|
|
|
|
DECLARE_ACTTABLE();
|
|
|
|
};
|
|
|
|
#endif |