mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-15 20:12:37 +03:00
28 lines
656 B
C++
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 |