the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 15 lines 255 B view raw
1#pragma once 2using namespace std; 3 4class ConsoleSavePath 5{ 6private: 7 wstring path; 8 9public: 10 ConsoleSavePath( const wstring &newPath ) { path = newPath; } 11 12 wstring getName() const { return path; } 13 14 wstring operator+( wstring &b ) { return path + b; } 15};