CShotInfo, CWanted done, Frontend fix
This commit is contained in:
23
src/weapons/ShotInfo.h
Normal file
23
src/weapons/ShotInfo.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
class CEntity;
|
||||
enum eWeaponType;
|
||||
|
||||
class CShotInfo
|
||||
{
|
||||
public:
|
||||
eWeaponType m_weapon;
|
||||
CVector m_startPos;
|
||||
CVector m_areaAffected;
|
||||
float m_radius;
|
||||
CEntity *m_sourceEntity;
|
||||
float m_timeout;
|
||||
bool m_inUse;
|
||||
|
||||
static float ms_afRandTable[20];
|
||||
|
||||
static void Initialise(void);
|
||||
static bool AddShot(CEntity*, eWeaponType, CVector, CVector);
|
||||
static void Shutdown(void);
|
||||
static void Update(void);
|
||||
};
|
||||
Reference in New Issue
Block a user