Make use of ArgumentParser and UsageInformation Generator in unlink tool

This commit is contained in:
Jan
2019-09-26 21:43:49 +02:00
parent c76352077a
commit 36cc8d3065
3 changed files with 71 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#include "ZoneLoading.h"
bool ZoneLoading::LoadZone(std::string& path)
bool ZoneLoading::LoadZone(const std::string& path)
{
return false;
}

View File

@ -4,5 +4,5 @@
class ZoneLoading
{
public:
static bool LoadZone(std::string& path);
static bool LoadZone(const std::string& path);
};