mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:43:37 +00:00
13 lines
267 B
C++
13 lines
267 B
C++
#pragma once
|
|
|
|
class ConsoleSavePath {
|
|
private:
|
|
std::wstring path;
|
|
|
|
public:
|
|
ConsoleSavePath(const std::wstring& newPath) { path = newPath; }
|
|
|
|
std::wstring getName() const { return path; }
|
|
|
|
std::wstring operator+(std::wstring& b) { return path + b; }
|
|
}; |