mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-24 08:53:04 +00:00
15 lines
389 B
C++
15 lines
389 B
C++
#pragma once
|
|
|
|
#include "Utils/ProgressCallback.h"
|
|
#include "Utils/Result.h"
|
|
#include "Zone/Zone.h"
|
|
|
|
#include <string>
|
|
|
|
class ZoneLoading
|
|
{
|
|
public:
|
|
static result::Expected<std::unique_ptr<Zone>, std::string> LoadZone(const std::string& path,
|
|
std::optional<std::unique_ptr<ProgressCallback>> progressCallback);
|
|
};
|