aboutsummaryrefslogtreecommitdiff
path: root/src/core/World.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-08-15 17:51:39 +0300
committereray orçunus <erayorcunus@gmail.com>2019-08-15 17:51:39 +0300
commit5bea16c7ccc617828d0aee2da23c8aa3f87375df (patch)
tree150df121717298a2735f418dcae366417b8404ec /src/core/World.h
parente5d089db8826b2bfe163b714146fda1ff92a5896 (diff)
AnimViewer!
Diffstat (limited to 'src/core/World.h')
-rw-r--r--src/core/World.h6
1 files changed, 6 insertions, 0 deletions
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;