mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 14:33:37 +00:00
15 lines
281 B
C++
15 lines
281 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ConsoleSavePath {
|
|
private:
|
|
std::string path;
|
|
|
|
public:
|
|
ConsoleSavePath(const std::string& newPath) { path = newPath; }
|
|
|
|
std::string getName() const { return path; }
|
|
|
|
std::string operator+(std::string& b) { return path + b; }
|
|
}; |