mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 15:58:28 -05:00
ZoneLoading: Extract all obj dumping relevant parts to ObjWriting component
This commit is contained in:
14
src/ObjWriting/Dumping/IZoneDumper.h
Normal file
14
src/ObjWriting/Dumping/IZoneDumper.h
Normal file
@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "Zone/Zone.h"
|
||||
#include "Utils/FileAPI.h"
|
||||
|
||||
class IZoneDumper
|
||||
{
|
||||
public:
|
||||
virtual ~IZoneDumper() = default;
|
||||
|
||||
virtual bool CanHandleZone(Zone* zone) = 0;
|
||||
virtual bool DumpZone(Zone* zone, const std::string& basePath) = 0;
|
||||
virtual bool WriteZoneDefinition(Zone* zone, FileAPI::File* file, bool minimalistic) = 0;
|
||||
};
|
Reference in New Issue
Block a user