summaryrefslogtreecommitdiffstats
path: root/src/modelinfo/ModelInfo.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-05 18:31:53 +0200
committeraap <aap@papnet.eu>2020-05-05 18:31:53 +0200
commit7428590457d6822c7a2861b64185c8ff447530c2 (patch)
tree28e7d1ccbc0aec839fc5af19a4e05a1c9cc206eb /src/modelinfo/ModelInfo.h
parentMerge branch 'miami' of https://github.com/GTAmodding/re3 into miami (diff)
downloadre3-7428590457d6822c7a2861b64185c8ff447530c2.tar
re3-7428590457d6822c7a2861b64185c8ff447530c2.tar.gz
re3-7428590457d6822c7a2861b64185c8ff447530c2.tar.bz2
re3-7428590457d6822c7a2861b64185c8ff447530c2.tar.lz
re3-7428590457d6822c7a2861b64185c8ff447530c2.tar.xz
re3-7428590457d6822c7a2861b64185c8ff447530c2.tar.zst
re3-7428590457d6822c7a2861b64185c8ff447530c2.zip
Diffstat (limited to '')
-rw-r--r--src/modelinfo/ModelInfo.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/modelinfo/ModelInfo.h b/src/modelinfo/ModelInfo.h
index 17428936..46f8c117 100644
--- a/src/modelinfo/ModelInfo.h
+++ b/src/modelinfo/ModelInfo.h
@@ -13,7 +13,6 @@ class CModelInfo
{
static CBaseModelInfo *ms_modelInfoPtrs[MODELINFOSIZE];
static CStore<CSimpleModelInfo, SIMPLEMODELSIZE> ms_simpleModelStore;
- static CStore<CInstance, MLOINSTANCESIZE> ms_mloInstanceStore;
static CStore<CTimeModelInfo, TIMEMODELSIZE> ms_timeModelStore;
static CStore<CClumpModelInfo, CLUMPMODELSIZE> ms_clumpModelStore;
static CStore<CPedModelInfo, PEDMODELSIZE> ms_pedModelStore;
@@ -31,7 +30,6 @@ public:
static CVehicleModelInfo *AddVehicleModel(int id);
static CStore<C2dEffect, TWODFXSIZE> &Get2dEffectStore(void) { return ms_2dEffectStore; }
- static CStore<CInstance, MLOINSTANCESIZE> &GetMloInstanceStore(void) { return ms_mloInstanceStore; }
static CBaseModelInfo *GetModelInfo(const char *name, int *id);
static CBaseModelInfo *GetModelInfo(int id){
@@ -41,7 +39,5 @@ public:
static bool IsBoatModel(int32 id);
static bool IsBikeModel(int32 id);
- static void RemoveColModelsFromOtherLevels(eLevelName level);
- static void ConstructMloClumps();
static void ReInit2dEffects();
};