re3-mirror/src/control/Garages.h

31 lines
870 B
C
Raw Normal View History

2019-05-28 07:39:36 +01:00
#pragma once
class CGarages
{
public:
static int32 &BankVansCollected;
static bool &BombsAreFree;
static bool &RespraysAreFree;
static int32 &CarsCollected;
static int32 &CarTypesCollected;
static int32 &CrushedCarId;
static uint32 &LastTimeHelpMessage;
static int32 &MessageNumberInString;
static const char *MessageIDString;
static int32 &MessageNumberInString2;
static uint32 &MessageStartTime;
static uint32 &MessageEndTime;
static uint32 &NumGarages;
static bool &PlayerInGarage;
static int32 &PoliceCarsCollected;
static uint32 &GarageToBeTidied;
2019-05-28 07:39:36 +01:00
public:
static bool IsModelIndexADoor(uint32 id);
2019-08-16 19:17:15 +01:00
static void TriggerMessage(const char *text, int16, uint16 time, int16);
static void PrintMessages(void);
2019-07-27 19:28:18 +01:00
static bool HasCarBeenCrushed(int32);
2019-09-16 18:32:58 +01:00
static bool IsPointWithinHideOutGarage(CVector&);
static bool IsPointWithinAnyGarage(CVector&);
2019-05-28 07:39:36 +01:00
};