CPad done

This commit is contained in:
Fire-Head
2019-06-13 03:35:26 +03:00
parent 292fd5ad24
commit 75bca8e31e
27 changed files with 2251 additions and 154 deletions

View File

@ -0,0 +1,4 @@
#include "common.h"
#include "Population.h"
Bool &CPopulation::ms_bGivePedsWeapons = *(Bool*)0x95CCF6;

7
src/control/Population.h Normal file
View File

@ -0,0 +1,7 @@
#pragma once
class CPopulation
{
public:
static Bool &ms_bGivePedsWeapons;
};

View File

@ -3,5 +3,6 @@
#include "Replay.h"
uint8 &CReplay::Mode = *(uint8*)0x95CD5B;
Bool &CReplay::bPlayingBackFromFile = *(Bool*)0x95CD58;
WRAPPER void CReplay::Display(void) { EAXJMP(0x595EE0); }

View File

@ -6,4 +6,5 @@ public:
static void Display(void);
static uint8 &Mode;
static Bool &bPlayingBackFromFile;
};