diff options
| author | inspectredc <inspectredc@gmail.com> | 2024-04-25 01:49:59 +0100 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-04-25 09:41:11 -0600 |
| commit | bdb3f94391b658192fb8afe4be8b7802c0ed6afb (patch) | |
| tree | bca4931686651f613b3b647dd2e33a627033872e /src/Companion.cpp | |
| parent | 09e8620f7584c1ba7c7ed688fbeecf10dace94fe (diff) | |
Asset Array 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 e413ff7..bc218b5 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -27,6 +27,7 @@ #include "factories/LightsFactory.h" #include "factories/Vec3fFactory.h" #include "factories/Vec3sFactory.h" +#include "factories/AssetArrayFactory.h" #include "factories/sm64/AnimationFactory.h" #include "factories/sm64/CollisionFactory.h" @@ -89,6 +90,7 @@ void Companion::Init(const ExportType type) { this->RegisterFactory("VEC3F", std::make_shared<Vec3fFactory>()); this->RegisterFactory("VEC3S", std::make_shared<Vec3sFactory>()); this->RegisterFactory("ARRAY", std::make_shared<GenericArrayFactory>()); + this->RegisterFactory("ASSET_ARRAY", std::make_shared<AssetArrayFactory>()); // SM64 specific this->RegisterFactory("SM64:DIALOG", std::make_shared<SM64::DialogFactory>()); |
