mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-21 03:45:38 +00:00
17 lines
468 B
C++
17 lines
468 B
C++
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include "Game/IW3/IW3.h"
|
|
|
|
namespace IW3
|
|
{
|
|
class AssetDumperLoadedSound final : public AbstractAssetDumper<LoadedSound>
|
|
{
|
|
static void DumpWavPcm(const LoadedSound* asset, std::ostream& stream);
|
|
|
|
protected:
|
|
bool ShouldDump(XAssetInfo<LoadedSound>* asset) override;
|
|
void DumpAsset(AssetDumpingContext& context, XAssetInfo<LoadedSound>* asset) override;
|
|
};
|
|
} // namespace IW3
|