2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-20 05:25:19 +00:00
Files
OpenAssetTools/src/ObjWriting/Game/IW4/Material/MaterialDecompilingDumperIW4.h
2025-10-15 20:06:01 +01:00

17 lines
462 B
C++

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