Registered msg factory

This commit is contained in:
KiritoDv
2024-03-11 00:05:16 -06:00
committed by Lywx
parent bb21e1f887
commit 04a66e743b
+2
View File
@@ -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();
}