WIP: Dumper for ducks and radverbs

This commit is contained in:
Jan 2023-12-11 18:46:29 +01:00
parent 4d86734f21
commit 7b6402ed9d
No known key found for this signature in database
GPG Key ID: 44B581F78FF5C57C
6 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#pragma once
namespace T6::sound
{
class AliasLoaderJson
{
};
}

View File

@ -0,0 +1,11 @@
#pragma once
#include "Game/T6/T6.h"
namespace T6::sound
{
class DuckDumperJson
{
virtual void DumpSndBankDucks(const SndBank* sndBank) const = 0;
};
} // namespace T6::sound

View File

@ -0,0 +1,12 @@
#pragma once
#include "Game/T6/T6.h"
namespace T6::sound
{
class RadverbDumperJson
{
public:
virtual void DumpSndBankRadverbs(const SndBank* sndBank) const = 0;
};
}