aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ConsoleSavePath.h
blob: 321b89033b5e25f920dad962ed91292c7b677107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
using namespace std;

class ConsoleSavePath
{
private:
	wstring path;

public:
	ConsoleSavePath( const wstring &newPath ) { path = newPath; }

	wstring getName() const { return path; }

	wstring operator+( wstring &b ) { return path + b; }
};