Move sound bank dumping code into separate files

This commit is contained in:
Jan
2023-12-05 23:52:04 +01:00
parent 3a825d1440
commit 55f97267ff
7 changed files with 678 additions and 602 deletions

View File

@ -0,0 +1,9 @@
#pragma once
#include "Dumping/AssetDumpingContext.h"
#include "Game/T6/T6.h"
namespace T6::sound
{
void DumpSoundData(const AssetDumpingContext& context, const SndBank* sndBank);
}