diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-11-19 18:50:28 -0600 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-11-21 00:05:17 -0600 |
| commit | 7ee72b8a9f09877d53dd81cf34e9ffb1865df33e (patch) | |
| tree | b6fa089ce6ec98b2ee750bbc5c938e4eebbb7b5f /src/Companion.cpp | |
| parent | fe18878a73cb184dfd844127f2d8a959fd887470 (diff) | |
Extracted Sequences
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 19c4f1a..e16c670 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -76,6 +76,7 @@ #include "factories/naudio/v1/EnvelopeFactory.h" #include "factories/naudio/v1/LoopFactory.h" #include "factories/naudio/v1/BookFactory.h" +#include "factories/naudio/v1/SequenceFactory.h" using namespace std::chrono; namespace fs = std::filesystem; @@ -159,6 +160,7 @@ void Companion::Init(const ExportType type) { this->RegisterFactory("NAUDIO:V1:ENVELOPE", std::make_shared<EnvelopeFactory>()); this->RegisterFactory("NAUDIO:V1:ADPCM_LOOP", std::make_shared<ADPCMLoopFactory>()); this->RegisterFactory("NAUDIO:V1:ADPCM_BOOK", std::make_shared<ADPCMBookFactory>()); + this->RegisterFactory("NAUDIO:V1:SEQUENCE", std::make_shared<NSequenceFactory>()); this->Process(); } |
