mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
18 lines
523 B
C++
18 lines
523 B
C++
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include "Game/IW5/IW5.h"
|
|
|
|
namespace IW5
|
|
{
|
|
class AssetDumperStringTable final : public AbstractAssetDumper<StringTable>
|
|
{
|
|
protected:
|
|
bool ShouldDump(XAssetInfo<StringTable>* asset) override;
|
|
bool CanDumpAsRaw() override;
|
|
|
|
std::string GetFileNameForAsset(Zone* zone, XAssetInfo<StringTable>* asset) override;
|
|
void DumpRaw(AssetDumpingContext& context, XAssetInfo<StringTable>* asset, std::ostream& stream) override;
|
|
};
|
|
}
|