summaryrefslogtreecommitdiffstats
path: root/src/core/Pools.h
diff options
context:
space:
mode:
authorWes Hampson <thehambone93@gmail.com>2020-03-11 04:25:50 +0100
committerWes Hampson <thehambone93@gmail.com>2020-03-11 04:26:07 +0100
commit28342405d37ae28fdf98546753e89d683480914f (patch)
tree3a7d990f29f9882cb180f14034078db107130206 /src/core/Pools.h
parentBegin work on GenericSave (diff)
downloadre3-28342405d37ae28fdf98546753e89d683480914f.tar
re3-28342405d37ae28fdf98546753e89d683480914f.tar.gz
re3-28342405d37ae28fdf98546753e89d683480914f.tar.bz2
re3-28342405d37ae28fdf98546753e89d683480914f.tar.lz
re3-28342405d37ae28fdf98546753e89d683480914f.tar.xz
re3-28342405d37ae28fdf98546753e89d683480914f.tar.zst
re3-28342405d37ae28fdf98546753e89d683480914f.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 862062ee..74b87585 100644
--- a/src/core/Pools.h
+++ b/src/core/Pools.h
@@ -52,4 +52,10 @@ public:
static CObject *GetObject(int32 handle);
static void CheckPoolsEmpty();
static void MakeSureSlotInObjectPoolIsEmpty(int32 slot);
+ static void LoadObjectPool(uint8 *buf, uint32 size);
+ static void LoadPedPool(uint8 *buf, uint32 size);
+ static void LoadVehiclePool(uint8 *buf, uint32 size);
+ static void SaveObjectPool(uint8 *buf, uint32 *size);
+ static void SavePedPool(uint8 *buf, uint32 *size);
+ static void SaveVehiclePool(uint8 *buf, uint32 *size);
};