mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-25 02:26:52 +01:00
f299e9ebd5
Added environment variables to premake5.lua. Update README.md
27 lines
659 B
C++
27 lines
659 B
C++
#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;
|
|
|
|
public:
|
|
static bool IsModelIndexADoor(uint32 id);
|
|
static void PrintMessages(void);
|
|
};
|