diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-04-13 04:32:11 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-04-13 04:42:02 +0200 |
commit | 60c412149dd0788e31398667e515a17c1a9b449a (patch) | |
tree | 7f79cf8fb0887478aee69e08b5f73fca22996ad4 /src/modelinfo/ModelInfo.h | |
parent | Merge pull request #409 from erorcun/erorcun (diff) | |
download | re3-60c412149dd0788e31398667e515a17c1a9b449a.tar re3-60c412149dd0788e31398667e515a17c1a9b449a.tar.gz re3-60c412149dd0788e31398667e515a17c1a9b449a.tar.bz2 re3-60c412149dd0788e31398667e515a17c1a9b449a.tar.lz re3-60c412149dd0788e31398667e515a17c1a9b449a.tar.xz re3-60c412149dd0788e31398667e515a17c1a9b449a.tar.zst re3-60c412149dd0788e31398667e515a17c1a9b449a.zip |
Diffstat (limited to 'src/modelinfo/ModelInfo.h')
-rw-r--r-- | src/modelinfo/ModelInfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modelinfo/ModelInfo.h b/src/modelinfo/ModelInfo.h index 13756ddf..e6dec1d8 100644 --- a/src/modelinfo/ModelInfo.h +++ b/src/modelinfo/ModelInfo.h @@ -36,7 +36,7 @@ public: static CVehicleModelInfo *AddVehicleModel(int id); static CStore<C2dEffect, TWODFXSIZE> &Get2dEffectStore(void) { return ms_2dEffectStore; } - static CStore<CInstance, MLOINSTANCESIZE> &GetMloInstanceStore(); + static CStore<CInstance, MLOINSTANCESIZE> &GetMloInstanceStore(void) { return ms_mloInstanceStore; } static CBaseModelInfo *GetModelInfo(const char *name, int *id); static CBaseModelInfo *GetModelInfo(int id){ @@ -47,4 +47,5 @@ public: static bool IsBikeModel(int32 id); static void RemoveColModelsFromOtherLevels(eLevelName level); static void ConstructMloClumps(); + static void ReInit2dEffects(); }; |