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

45 lines
847 B
C++

#ifndef WEAPON_SPOREC_H
#define WEAPON_SPOREC_H
#include "OverCharged/weapon_spore_launcher.h"
class CWeaponSporeLauncherC1 : public CWeaponSporeLauncher
{
DECLARE_DATADESC();
public:
DECLARE_CLASS(CWeaponSporeLauncherC1, CWeaponSporeLauncher);
CWeaponSporeLauncherC1() : BaseClass() {};
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
};
class CWeaponSporeLauncherC2 : public CWeaponSporeLauncher
{
DECLARE_DATADESC();
public:
DECLARE_CLASS(CWeaponSporeLauncherC2, CWeaponSporeLauncher);
CWeaponSporeLauncherC2() : BaseClass() {};
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
};
class CWeaponSporeLauncherC3 : public CWeaponSporeLauncher
{
DECLARE_DATADESC();
public:
DECLARE_CLASS(CWeaponSporeLauncherC3, CWeaponSporeLauncher);
CWeaponSporeLauncherC3() : BaseClass() {};
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
};
#endif