2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-04 07:47:25 +00:00

chore: use IObjWriter directly instead of indirection of ObjWriting

This commit is contained in:
Jan
2024-10-19 12:41:20 +02:00
parent 4c9a84777f
commit bb845f68e9
21 changed files with 121 additions and 153 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include "IObjWriter.h"
namespace T6
{
class ObjWriter final : public IObjWriter
{
public:
bool DumpZone(AssetDumpingContext& context) const override;
};
} // namespace T6