summaryrefslogtreecommitdiffstats
path: root/src/core/Explosion.h
blob: 69508490461bf4c6e8a73cf20943bca37df9f7d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
};