mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-20 12:49:23 +00:00
yet more CAutomobile
This commit is contained in:
parent
74fcbc8c0a
commit
a65dd41da7
17 changed files with 201 additions and 23 deletions
|
@ -1,13 +1,13 @@
|
|||
#pragma once
|
||||
#include "common.h"
|
||||
#include "Entity.h"
|
||||
|
||||
class CEntity;
|
||||
|
||||
class CFire
|
||||
{
|
||||
char m_bIsOngoing;
|
||||
char m_bExists;
|
||||
char m_bPropogationFlag;
|
||||
char m_bAudioSet;
|
||||
bool m_bIsOngoing;
|
||||
bool m_bExists;
|
||||
bool m_bPropogationFlag;
|
||||
bool m_bAudioSet;
|
||||
CVector m_vecPos;
|
||||
CEntity *m_pEntity;
|
||||
CEntity *m_pSource;
|
||||
|
@ -20,4 +20,11 @@ class CFire
|
|||
|
||||
public:
|
||||
void Extinguish(void);
|
||||
};
|
||||
};
|
||||
|
||||
class CFireManager
|
||||
{
|
||||
public:
|
||||
void StartFire(CEntity *entityOnFire, CEntity *culprit, float, uint32);
|
||||
};
|
||||
extern CFireManager &gFireManager;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue