mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-25 10:36:53 +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);
|
|
};
|