diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-13 02:40:46 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-13 02:40:46 +0200 |
commit | 06e48c70595808f8c3143d4284e5757e29d81800 (patch) | |
tree | e321a452104d4dd3716b1bdfaa1bda81a739be26 /src/control | |
parent | CPad done (diff) | |
parent | Merge pull request #6 from GTAmodding/master (diff) | |
download | re3-06e48c70595808f8c3143d4284e5757e29d81800.tar re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.gz re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.bz2 re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.lz re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.xz re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.zst re3-06e48c70595808f8c3143d4284e5757e29d81800.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Replay.h | 4 | ||||
-rw-r--r-- | src/control/Script.cpp | 6 | ||||
-rw-r--r-- | src/control/Script.h | 7 |
3 files changed, 16 insertions, 1 deletions
diff --git a/src/control/Replay.h b/src/control/Replay.h index e7a195dc..b680cacc 100644 --- a/src/control/Replay.h +++ b/src/control/Replay.h @@ -3,7 +3,9 @@ class CReplay { public: - static void Display(void); + enum { + MODE_1 + }; static uint8 &Mode; static Bool &bPlayingBackFromFile; diff --git a/src/control/Script.cpp b/src/control/Script.cpp new file mode 100644 index 00000000..71fc7bcd --- /dev/null +++ b/src/control/Script.cpp @@ -0,0 +1,6 @@ +#include "common.h" +#include "patcher.h" + +#include "Script.h" + +uint8 *CTheScripts::ScriptSpace = (uint8*)0x74B248; diff --git a/src/control/Script.h b/src/control/Script.h new file mode 100644 index 00000000..6f329e1f --- /dev/null +++ b/src/control/Script.h @@ -0,0 +1,7 @@ +#pragma once + +class CTheScripts +{ +public: + static uint8 *ScriptSpace;//[160*1024] +}; |