mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-28 20:14:15 +01: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);
|
||
|
};
|