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

@ -2,6 +2,11 @@
using namespace T6;
bool AssetDumperRawFile::ShouldDump(RawFile* asset)
{
return true;
}
std::string AssetDumperRawFile::GetFileNameForAsset(Zone* zone, RawFile* asset)
{
return std::string(asset->name);