mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-01 06:27:26 +00:00
14 lines
328 B
C++
14 lines
328 B
C++
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include "Game/T6/T6.h"
|
|
|
|
namespace T6::sound
|
|
{
|
|
class SndDriverGlobalsDumper final : public IAssetDumper<SndDriverGlobals>
|
|
{
|
|
public:
|
|
void DumpPool(AssetDumpingContext& context, AssetPool<SndDriverGlobals>* pool) override;
|
|
};
|
|
} // namespace T6::sound
|