1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-08 10:13:28 +08:00
hl2sdk/game/server/hl2/grenade_frag.h

20 lines
674 B
C++

//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef GRENADE_FRAG_H
#define GRENADE_FRAG_H
#pragma once
class CBaseGrenade;
struct edict_t;
CBaseGrenade *Fraggrenade_Create( const Vector &position, const QAngle &angles, const Vector &velocity, const AngularImpulse &angVelocity, CBaseEntity *pOwner, float timer, bool combineSpawned );
bool Fraggrenade_WasPunted( const CBaseEntity *pEntity );
bool Fraggrenade_WasCreatedByCombine( const CBaseEntity *pEntity );
#endif // GRENADE_FRAG_H