Added support to extract banks on each sequence

This commit is contained in:
KiritoDv
2023-09-16 03:10:56 -06:00
parent fc7bf4c6ec
commit 98b6d59832
7 changed files with 124 additions and 50 deletions
+1 -1
View File
@@ -23,8 +23,8 @@ static const std::unordered_map<std::string, RawFactory*> gFactories = {
{ ".aiff", new AudioFactory() },
{ ".bnk", new AudioFactory() },
{ ".bset", new AudioFactory() },
{ ".m64", new AudioFactory() },
{ ".bin", new BlobFactory(LUS::ResourceType::Blob) },
{ ".m64", new BlobFactory(LUS::ResourceType::Blob) },
{ ".sbox", new BlobFactory(LUS::ResourceType::Blob, true) },
};