mirror of
https://github.com/halpz/re3.git
synced 2025-01-07 20:15:27 +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);
|
|
};
|