Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
255 B · 15 lines
C
at main
123456789101112131415#pragma onceusing 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; }};