mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-03-03 03:23:03 +00:00
14 lines
364 B
C++
14 lines
364 B
C++
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include "Game/IW4/IW4.h"
|
|
|
|
namespace phys_preset
|
|
{
|
|
class InfoStringDumperIW4 final : public AbstractAssetDumper<IW4::AssetPhysPreset>
|
|
{
|
|
protected:
|
|
void DumpAsset(AssetDumpingContext& context, const XAssetInfo<IW4::AssetPhysPreset::Type>& asset) override;
|
|
};
|
|
} // namespace phys_preset
|