mirror of
https://github.com/halpz/re3.git
synced 2025-07-31 23:50:24 +00:00
Full CRestart
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#define NUM_RESTART_POINTS 8
|
||||
|
||||
class CRestart
|
||||
{
|
||||
public:
|
||||
@ -9,9 +11,26 @@ public:
|
||||
|
||||
static void FindClosestHospitalRestartPoint(const CVector &, CVector *, float *);
|
||||
static void FindClosestPoliceRestartPoint(const CVector &, CVector *, float *);
|
||||
static void Initialise();
|
||||
static void CancelOverrideRestart();
|
||||
|
||||
static bool &OverrideHospitalLevel;
|
||||
static bool &OverridePoliceStationLevel;
|
||||
static void LoadAllRestartPoints(uint8 *buf, uint32 size);
|
||||
static void SaveAllRestartPoints(uint8 *buf, uint32 *size);
|
||||
|
||||
static uint8 &OverrideHospitalLevel;
|
||||
static uint8 &OverridePoliceStationLevel;
|
||||
static bool &bFadeInAfterNextArrest;
|
||||
static bool &bFadeInAfterNextDeath;
|
||||
|
||||
static bool &bOverrideRestart;
|
||||
static CVector &OverridePosition;
|
||||
static float &OverrideHeading;
|
||||
|
||||
static CVector(&HospitalRestartPoints)[NUM_RESTART_POINTS];
|
||||
static float (&HospitalRestartHeadings)[NUM_RESTART_POINTS];
|
||||
static uint16 &NumberOfHospitalRestarts;
|
||||
|
||||
static CVector (&PoliceRestartPoints)[NUM_RESTART_POINTS];
|
||||
static float (&PoliceRestartHeadings)[NUM_RESTART_POINTS];
|
||||
static uint16 &NumberOfPoliceRestarts;
|
||||
};
|
||||
|
Reference in New Issue
Block a user