diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-09-12 03:43:18 +0300 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-09-12 03:46:15 +0300 |
commit | 14c7c1d7ca722935195a20817c96b1af75046359 (patch) | |
tree | 0ed77a2bf6d999ff94b8c70aca1795db4b9173c7 /src/control/Record.h | |
parent | 3378cad058a1def5f3b9f2e2704e9e788be9b9f8 (diff) |
World and Peds
Diffstat (limited to 'src/control/Record.h')
-rw-r--r-- | src/control/Record.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/control/Record.h b/src/control/Record.h index 2705a955..08e9f7c8 100644 --- a/src/control/Record.h +++ b/src/control/Record.h @@ -6,14 +6,18 @@ enum { RECORDSTATE_2, }; -class CRecordDataForGame +class CRecordDataForChase { public: - static uint16 &RecordingState; + static uint8 &Status; + + static void ProcessControlCars(void); + static void SaveOrRetrieveCarPositions(void); }; -class CRecordDataForChase + +class CRecordDataForGame { public: - static uint8 &Status; + static uint16 &RecordingState; }; |