mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 17:15:46 +00:00
12 lines
239 B
C++
12 lines
239 B
C++
#pragma once
|
|
|
|
#include "Zone/Zone.h"
|
|
|
|
class IZoneDumper
|
|
{
|
|
public:
|
|
virtual ~IZoneDumper() = default;
|
|
|
|
virtual bool CanHandleZone(Zone* zone) const = 0;
|
|
virtual bool DumpZone(Zone* zone, const std::string& basePath) const = 0;
|
|
}; |