mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 06:49:28 -05:00
14 lines
348 B
C++
14 lines
348 B
C++
#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;
|
|
}; |