diff options
| author | inspectredc <inspectredc@gmail.com> | 2024-04-25 15:52:32 +0100 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-04-25 09:40:57 -0600 |
| commit | 09e8620f7584c1ba7c7ed688fbeecf10dace94fe (patch) | |
| tree | 29e4cfe75fd007871850fc7711d0f0d9f4cdfe0c /src/Companion.cpp | |
| parent | df54367b676f44d2b925e681ae05eef665f7c45f (diff) | |
LevelScript Factory
Diffstat (limited to 'src/Companion.cpp')
| -rw-r--r-- | src/Companion.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp index 317fe64..e413ff7 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -34,6 +34,7 @@ #include "factories/sm64/DictionaryFactory.h" #include "factories/sm64/TextFactory.h" #include "factories/sm64/GeoLayoutFactory.h" +#include "factories/sm64/LevelScriptFactory.h" #include "factories/sm64/MacroFactory.h" #include "factories/sm64/MovtexFactory.h" #include "factories/sm64/MovtexQuadFactory.h" @@ -96,6 +97,7 @@ void Companion::Init(const ExportType type) { this->RegisterFactory("SM64:ANIM", std::make_shared<SM64::AnimationFactory>()); this->RegisterFactory("SM64:COLLISION", std::make_shared<SM64::CollisionFactory>()); this->RegisterFactory("SM64:GEO_LAYOUT", std::make_shared<SM64::GeoLayoutFactory>()); + this->RegisterFactory("SM64:LEVEL_SCRIPT", std::make_shared<SM64::LevelScriptFactory>()); this->RegisterFactory("SM64:MACRO", std::make_shared<SM64::MacroFactory>()); this->RegisterFactory("SM64:MOVTEX_QUAD", std::make_shared<SM64::MovtexQuadFactory>()); this->RegisterFactory("SM64:MOVTEX", std::make_shared<SM64::MovtexFactory>()); |
