diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-03-10 20:15:27 -0600 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-03-11 00:05:16 -0600 |
| commit | 04a66e743b643ab0589dbef7e8d3531763013fe0 (patch) | |
| tree | ce0b24012e04df7527aec242b32999ff21c7c257 /src/Companion.cpp | |
| parent | bb21e1f887788f340f701603564832a2403a879e (diff) | |
Registered msg 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 c292660..cc273b7 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -28,6 +28,7 @@ #include <fstream> #include <iostream> #include <filesystem> +#include "factories/sf64/MessageFactory.h" using namespace std::chrono; namespace fs = std::filesystem; @@ -66,6 +67,7 @@ void Companion::Init(const ExportType type) { // SF64 specific this->RegisterFactory("SF64:ANIM", std::make_shared<SF64::AnimFactory>()); + this->RegisterFactory("SF64:MESSAGE", std::make_shared<SF64::MessageFactory>()); this->Process(); } |
