From 5bea16c7ccc617828d0aee2da23c8aa3f87375df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?eray=20or=C3=A7unus?= Date: Thu, 15 Aug 2019 17:51:39 +0300 Subject: AnimViewer! --- src/core/World.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/World.h') diff --git a/src/core/World.h b/src/core/World.h index 6c52da5a..c2ca75c4 100644 --- a/src/core/World.h +++ b/src/core/World.h @@ -67,6 +67,8 @@ public: static bool &bSecondShift; static bool &bForceProcessControl; static bool &bProcessCutsceneOnly; + static bool &bDoingCarCollisions; + static bool &bIncludeCarTyres; static void Remove(CEntity *entity); static void Add(CEntity *entity); @@ -111,6 +113,10 @@ public: static int GetSectorIndexY(float f) { return (int)GetSectorY(f); } static float GetWorldX(int x) { return x*SECTOR_SIZE_X + WORLD_MIN_X; } static float GetWorldY(int y) { return y*SECTOR_SIZE_Y + WORLD_MIN_Y; } + + static void Initialise(); + static void ShutDown(); + static void Process(); }; class CPlayerPed; -- cgit v1.2.3