2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-06 21:13:02 +00:00
Files
OpenAssetTools/src/ObjWriting/Game/IW5/StringTable/StringTableDumperIW5.h
2026-02-05 18:17:15 +01:00

14 lines
358 B
C++

#pragma once
#include "Dumping/AbstractAssetDumper.h"
#include "Game/IW5/IW5.h"
namespace string_table
{
class DumperIW5 final : public AbstractAssetDumper<IW5::AssetStringTable>
{
protected:
void DumpAsset(AssetDumpingContext& context, const XAssetInfo<IW5::AssetStringTable::Type>& asset) override;
};
} // namespace string_table