Implement ZoneLoading in ZoneLoading component class

This commit is contained in:
Jan
2019-09-26 22:35:59 +02:00
parent 36cc8d3065
commit d662e5dcfa
3 changed files with 43 additions and 4 deletions

View File

@ -1,8 +1,9 @@
#pragma once
#include "Zone/Zone.h"
#include <string>
class ZoneLoading
{
public:
static bool LoadZone(const std::string& path);
static Zone* LoadZone(const std::string& path);
};