2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-05 10:41:52 +00:00
Files
OpenAssetTools/src/ZoneLoading/ZoneLoading.h
2023-11-19 21:07:21 +00:00

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);
};