summaryrefslogtreecommitdiffstats
path: root/src/core/Pools.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-12 18:01:22 +0200
committeraap <aap@papnet.eu>2019-07-12 18:01:22 +0200
commit60711154baf5477d6f4c12add1ecdd0a24c0c116 (patch)
tree460199051422d03a6a70a1e57f9c8d2d588c85b6 /src/core/Pools.h
parentCAutomobile::ProcessControlInputs (diff)
downloadre3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar
re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.gz
re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.bz2
re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.lz
re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.xz
re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.zst
re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.zip
Diffstat (limited to 'src/core/Pools.h')
-rw-r--r--src/core/Pools.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/Pools.h b/src/core/Pools.h
index 3496064c..e364798c 100644
--- a/src/core/Pools.h
+++ b/src/core/Pools.h
@@ -40,4 +40,10 @@ public:
static CDummyPool *GetDummyPool(void) { return ms_pDummyPool; }
static void Initialise(void);
+ static int32 GetPedRef(CPed *ped);
+ static CPed *GetPed(int32 handle);
+ static int32 GetVehicleRef(CVehicle *vehicle);
+ static CVehicle *GetVehicle(int32 handle);
+ static int32 GetObjectRef(CObject *object);
+ static CObject *GetObject(int32 handle);
};