You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
501 B
20 lines
501 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef TF_SHIELDGRENADE_H
|
||
|
#define TF_SHIELDGRENADE_H
|
||
|
#pragma once
|
||
|
|
||
|
|
||
|
class CBaseEntity;
|
||
|
struct edict_t;
|
||
|
|
||
|
CBaseEntity *CreateShieldGrenade( const Vector& position, const QAngle &angles,
|
||
|
const Vector& velocity, const QAngle &angVelocity, CBaseEntity *pOwner, float timer );
|
||
|
|
||
|
#endif // TF_SHIELDGRENADE_H
|