This commit is contained in:
aap
2019-05-30 00:47:33 +02:00
parent b705be0e87
commit 0a36d49d2c
20 changed files with 115 additions and 302 deletions

6
src/control/Record.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "common.h"
#include "Record.h"
UInt16 &CRecordDataForGame::RecordingState = *(UInt16*)0x95CC24;
UInt8 &CRecordDataForChase::Status = *(UInt8*)0x95CDCE;

13
src/control/Record.h Normal file
View File

@ -0,0 +1,13 @@
#pragma once
class CRecordDataForGame
{
public:
static UInt16 &RecordingState;
};
class CRecordDataForChase
{
public:
static UInt8 &Status;
};