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

28 lines
656 B
C++

#ifndef WEAPON_FlashB_H
#define WEAPON_FlashB_H
#include "basehlcombatweapon.h"
#include "weapon_frag.h"
//-----------------------------------------------------------------------------
// Fragmentation grenades
//-----------------------------------------------------------------------------
class CWeaponFlashbang : public CWeaponFrag
{
DECLARE_CLASS(CWeaponFlashbang, CWeaponFrag);
public:
DECLARE_SERVERCLASS();
void GrenChangeVisible(void);
void GrenSetVisible(void);
void ThrowGrenade(CBasePlayer *pPlayer);
void RollGrenade(CBasePlayer *pPlayer);
void LobGrenade(CBasePlayer *pPlayer);
DECLARE_ACTTABLE();
DECLARE_DATADESC();
};
#endif