2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-02 15:07:26 +00:00

ObjWriting: Add method to AbstractAssetDumper for checking whether an asset should be dumped

This commit is contained in:
Jan
2020-02-11 20:46:59 +01:00
parent dd4987c2f1
commit 7d809faf07
11 changed files with 37 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
class AssetDumperStringTable final : public AbstractAssetDumper<T6::StringTable>
{
protected:
bool ShouldDump(T6::StringTable* asset) override;
std::string GetFileNameForAsset(Zone* zone, T6::StringTable* asset) override;
void DumpAsset(Zone* zone, T6::StringTable* asset, FileAPI::File* out) override;
};