diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2019-10-12 22:00:31 +0300 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2019-10-12 22:00:31 +0300 |
commit | c78fff8d5469f76a1a684f55bb4a6c7d64ad12b7 (patch) | |
tree | 754aa2cd46ffa7ad3e6c4e8c0498341bb569c57f /src/control/Script.h | |
parent | a34870645a27c64234b3732dfc549f143ed5d954 (diff) |
script 400-499 start
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; |