mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:03:39 +00:00
15 lines
260 B
C++
15 lines
260 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; }
|
|
}; |