Files
HL2Overcharged/game/server/overcharged/CustomWeapons/weapon_wrenchCustom.h
2025-05-21 21:20:08 +03:00

45 lines
736 B
C++

#ifndef WEAPON_WRENCHC_H
#define WEAPON_WRENCHC_H
#include "OverCharged/weapon_wrench.h"
class CWeaponWrenchC1 : public CWeaponWrench
{
DECLARE_DATADESC();
public:
DECLARE_CLASS(CWeaponWrenchC1, CWeaponWrench);
CWeaponWrenchC1() : BaseClass() {};
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
};
class CWeaponWrenchC2 : public CWeaponWrench
{
DECLARE_DATADESC();
public:
DECLARE_CLASS(CWeaponWrenchC2, CWeaponWrench);
CWeaponWrenchC2() : BaseClass() {};
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
};
class CWeaponWrenchC3 : public CWeaponWrench
{
DECLARE_DATADESC();
public:
DECLARE_CLASS(CWeaponWrenchC3, CWeaponWrench);
CWeaponWrenchC3() : BaseClass() {};
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
};
#endif