From a50138b71ad0b3b1fdd01cbededeb0f9e900134c Mon Sep 17 00:00:00 2001 From: inspectredc <78732756+inspectredc@users.noreply.github.com> Date: Tue, 7 Oct 2025 03:26:44 +0100 Subject: FZX Audio (#199) * sequence factory * matching for fzx * Portable Soundfont Factory --- src/Companion.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Companion.cpp') diff --git a/src/Companion.cpp b/src/Companion.cpp index 4485f3d..c52d87e 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -73,6 +73,8 @@ #ifdef FZERO_SUPPORT #include "factories/fzerox/CourseFactory.h" #include "factories/fzerox/GhostRecordFactory.h" +#include "factories/fzerox/SequenceFactory.h" +#include "factories/fzerox/SoundFontFactory.h" #endif #ifdef MARIO_ARTIST_SUPPORT @@ -187,6 +189,8 @@ void Companion::Init(const ExportType type) { #ifdef FZERO_SUPPORT this->RegisterFactory("FZX:COURSE", std::make_shared()); this->RegisterFactory("FZX:GHOST", std::make_shared()); + this->RegisterFactory("FZX:SEQUENCE", std::make_shared()); + this->RegisterFactory("FZX:SOUNDFONT", std::make_shared()); #endif #ifdef MARIO_ARTIST_SUPPORT -- cgit v1.2.3