initial
This commit is contained in:
52
game/shared/cstrike15/weapon_smokegrenade.h
Normal file
52
game/shared/cstrike15/weapon_smokegrenade.h
Normal file
@@ -0,0 +1,52 @@
|
||||
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
|
||||
#ifndef WEAPON_SMOKEGRENADE_H
|
||||
#define WEAPON_SMOKEGRENADE_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
|
||||
#include "weapon_basecsgrenade.h"
|
||||
|
||||
|
||||
#ifdef CLIENT_DLL
|
||||
|
||||
#define CSmokeGrenade C_SmokeGrenade
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Smoke grenades
|
||||
//-----------------------------------------------------------------------------
|
||||
class CSmokeGrenade : public CBaseCSGrenade
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS( CSmokeGrenade, CBaseCSGrenade );
|
||||
DECLARE_NETWORKCLASS();
|
||||
DECLARE_PREDICTABLE();
|
||||
|
||||
CSmokeGrenade() {}
|
||||
|
||||
virtual CSWeaponID GetCSWeaponID( void ) const { return WEAPON_SMOKEGRENADE; }
|
||||
|
||||
#ifdef CLIENT_DLL
|
||||
|
||||
#else
|
||||
DECLARE_DATADESC();
|
||||
|
||||
void EmitGrenade( Vector vecSrc, QAngle vecAngles, Vector vecVel, AngularImpulse angImpulse, CBasePlayer *pPlayer, const CCSWeaponInfo& weaponInfo );
|
||||
|
||||
#endif
|
||||
|
||||
CSmokeGrenade( const CSmokeGrenade & ) {}
|
||||
};
|
||||
|
||||
|
||||
#endif // WEAPON_SMOKEGRENADE_H
|
||||
Reference in New Issue
Block a user