mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-06-06 08:42:35 +00:00
WIP: Dumper for ducks and radverbs
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
namespace T6::sound
|
||||
{
|
||||
class AliasLoaderJson
|
||||
{
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user