mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
11 lines
155 B
C++
11 lines
155 B
C++
#pragma once
|
|
#include "Zone/Zone.h"
|
|
|
|
#include <string>
|
|
|
|
class ZoneLoading
|
|
{
|
|
public:
|
|
static std::unique_ptr<Zone> LoadZone(const std::string& path);
|
|
};
|