diff options
author | aap <aap@papnet.eu> | 2019-09-12 10:08:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 10:08:15 +0200 |
commit | 4299e307d606da8c40a4d28c08628ff0da54a6d8 (patch) | |
tree | 790c66ed4088dc8b4bb7071dd40e6f03750819ec /src/control/Record.h | |
parent | Merge pull request #203 from Nick007J/master (diff) | |
parent | World and Peds (diff) | |
download | re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.tar re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.tar.gz re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.tar.bz2 re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.tar.lz re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.tar.xz re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.tar.zst re3-4299e307d606da8c40a4d28c08628ff0da54a6d8.zip |
Diffstat (limited to '')
-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; }; |