mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-02-18 02:56:22 +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);
|
||
|
};
|