diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-15 12:53:42 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-15 12:53:42 +0100 |
commit | 043efaf082a8ce5010e6ff974afea05d8d66e9d1 (patch) | |
tree | 40115f81c6a4b4756743a36485eacd4b7a5607b9 /src/control/Script.h | |
parent | Merge branch 'master' of https://github.com/Nick007J/re3 (diff) | |
download | re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.tar re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.tar.gz re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.tar.bz2 re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.tar.lz re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.tar.xz re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.tar.zst re3-043efaf082a8ce5010e6ff974afea05d8d66e9d1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Script.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/control/Script.h b/src/control/Script.h index 9a39dd10..426a0f50 100644 --- a/src/control/Script.h +++ b/src/control/Script.h @@ -377,6 +377,12 @@ public: static void DrawDebugSquare(float, float, float, float); static void DrawDebugCube(float, float, float, float, float, float); static void AddToInvisibilitySwapArray(CEntity*, bool); + static void AddToBuildingSwapArray(CBuilding*, int32, int32); + + static int32 GetActualScriptSphereIndex(int32 index); + static int32 AddScriptSphere(int32 id, CVector pos, float radius); + static int32 GetNewUniqueScriptSphereIndex(int32 index); + static void RemoveScriptSphere(int32 index); static int32 Read4BytesFromScript(uint32* pIp){ int32 retval = 0; |