mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
11 lines
310 B
C++
11 lines
310 B
C++
#pragma once
|
|
#include "Dumping/IZoneDumper.h"
|
|
|
|
class ZoneDumperT6 final : public IZoneDumper
|
|
{
|
|
public:
|
|
bool CanHandleZone(Zone* zone) const override;
|
|
bool DumpZone(Zone* zone, const std::string& basePath) const override;
|
|
bool WriteZoneDefinition(Zone* zone, FileAPI::File* file) const override;
|
|
};
|