diff options
| author | inspectredc <78732756+inspectredc@users.noreply.github.com> | 2024-04-23 17:38:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-23 10:38:58 -0600 |
| commit | 91e834d819c82f0d64cf4f71ea9d1788c9135bda (patch) | |
| tree | 33dfd5dfbdf280cf764b9421176aa20cd6d5cf03 /src/Companion.cpp | |
| parent | 686ca4115a85c8e13db62af61b3dafd73c55a51f (diff) | |
Painting Mapping Factory (#104)
* Painting Factory
* update factory naming
---------
Co-authored-by: Lywx <kiritodev01@gmail.com>
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 87b3810..317fe64 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -37,6 +37,7 @@ #include "factories/sm64/MacroFactory.h" #include "factories/sm64/MovtexFactory.h" #include "factories/sm64/MovtexQuadFactory.h" +#include "factories/sm64/PaintingMapFactory.h" #include "factories/sm64/TrajectoryFactory.h" #include "factories/mk64/CourseVtx.h" @@ -98,6 +99,7 @@ void Companion::Init(const ExportType type) { 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>()); + this->RegisterFactory("SM64:PAINTING_MAP", std::make_shared<SM64::PaintingMapFactory>()); this->RegisterFactory("SM64:TRAJECTORY", std::make_shared<SM64::TrajectoryFactory>()); // MK64 specific |
