diff options
author | erorcun <erayorcunus@gmail.com> | 2019-10-16 22:42:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-16 22:42:31 +0200 |
commit | 2c81844c20e41079b8d654a4bd06c62e6cd160ea (patch) | |
tree | 0d4061ef678cf2bb73bc634128f19878e14c9608 /src/control/Script.h | |
parent | Merge pull request #245 from erorcun/erorcun (diff) | |
parent | Merge branch 'master' into master (diff) | |
download | re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.tar re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.tar.gz re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.tar.bz2 re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.tar.lz re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.tar.xz re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.tar.zst re3-2c81844c20e41079b8d654a4bd06c62e6cd160ea.zip |
Diffstat (limited to 'src/control/Script.h')
-rw-r--r-- | src/control/Script.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/control/Script.h b/src/control/Script.h index 47c70914..2c4ec2c0 100644 --- a/src/control/Script.h +++ b/src/control/Script.h @@ -124,10 +124,10 @@ public: void LocateCharObjectCommand(int32, uint32*); void LocateCarCommand(int32, uint32*); void LocateSniperBulletCommand(int32, uint32*); - void LocatePlayerInAreaCheckCommand(int32, uint32*); - void LocatePlayerInAngledAreaCheckCommand(int32, uint32*); - void LocateCharInAreaCheckCommand(int32, uint32*); - void LocateCharInAngledAreaCheckCommand(int32, uint32*); + void PlayerInAreaCheckCommand(int32, uint32*); + void PlayerInAngledAreaCheckCommand(int32, uint32*); + void CharInAreaCheckCommand(int32, uint32*); + void CarInAreaCheckCommand(int32, uint32*); private: enum { ANDOR_NONE = 0, @@ -348,6 +348,7 @@ public: static void HighlightImportantArea(uint32, float, float, float, float, float); static void DrawDebugSquare(float, float, float, float); static void DrawDebugCube(float, float, float, float, float, float); + static bool IsVehicleStopped(CVehicle*); static int32 Read4BytesFromScript(uint32* pIp){ int32 retval = 0; |