diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2023-10-04 23:18:35 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2023-10-04 23:18:35 -0600 |
| commit | 234b6ab7a4fc094ad763aafb0867a2dabb3e14ec (patch) | |
| tree | 6604f319a15f51e986d501042f3c8b04353a82f8 /src/Companion.cpp | |
| parent | 2a6fe7dc188d4fce180410a3747e5fe009032634 (diff) | |
Added sm64 dictionary extraction
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 41d5a65..88f8542 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -13,6 +13,7 @@ #include "factories/sm64/SAnimFactory.h" #include "factories/sm64/STextFactory.h" #include "factories/sm64/SDialogFactory.h" +#include "factories/sm64/SDictionaryFactory.h" #include "spdlog/spdlog.h" #include <chrono> @@ -40,6 +41,7 @@ void Companion::Init() { this->RegisterFactory("SM64:DIALOG", new SDialogFactory()); this->RegisterFactory("SM64:ANIM", new SAnimFactory()); this->RegisterFactory("SM64:TEXT", new STextFactory()); + this->RegisterFactory("SM64:DICTIONARY", new SDictionaryFactory()); // Debug this->RegisterFactory("MIO0", new MIO0Factory()); |
