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 IW3
{
class ObjWriter final : public IObjWriter
{
public:
bool DumpZone(AssetDumpingContext& context) const override;
};
} // namespace IW3