mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 05:18:59 +00:00
16 lines
237 B
C
16 lines
237 B
C
|
#pragma once
|
||
|
|
||
|
class CEntity;
|
||
|
|
||
|
enum eExplosionType
|
||
|
{
|
||
|
EXPLOSION_3 = 3,
|
||
|
EXPLOSION_4
|
||
|
};
|
||
|
|
||
|
class CExplosion
|
||
|
{
|
||
|
public:
|
||
|
static void AddExplosion(CEntity *explodingEntity, CEntity *culprit, eExplosionType type, const CVector &pos, uint32);
|
||
|
};
|