This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
//========= Copyright 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 GetWeaponID( void ) const { return WEAPON_SMOKEGRENADE; }
#ifdef CLIENT_DLL
#else
DECLARE_DATADESC();
void EmitGrenade( Vector vecSrc, QAngle vecAngles, Vector vecVel, AngularImpulse angImpulse, CBasePlayer *pPlayer );
#endif
CSmokeGrenade( const CSmokeGrenade & ) {}
};
#endif // WEAPON_SMOKEGRENADE_H