mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
20 lines
501 B
C++
20 lines
501 B
C++
//========= 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
|