2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-18 20:45:19 +00:00
Files
OpenAssetTools/src/ObjWriting/Game/IW4/Sound/SndCurveDumperIW4.h
2025-10-15 20:06:01 +01:00

17 lines
446 B
C++

#pragma once
#include "Dumping/AbstractAssetDumper.h"
#include "Game/IW4/IW4.h"
namespace sound_curve
{
class DumperIW4 final : public AbstractAssetDumper<IW4::AssetSoundCurve>
{
public:
explicit DumperIW4(const AssetPool<IW4::AssetSoundCurve::Type>& pool);
protected:
void DumpAsset(AssetDumpingContext& context, const XAssetInfo<IW4::AssetSoundCurve::Type>& asset) override;
};
} // namespace sound_curve