mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
10 lines
138 B
C++
10 lines
138 B
C++
#pragma once
|
|
#include "Zone/Zone.h"
|
|
#include <string>
|
|
|
|
class ZoneLoading
|
|
{
|
|
public:
|
|
static Zone* LoadZone(const std::string& path);
|
|
};
|