the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 14 lines 233 B view raw
1#pragma once 2using namespace std; 3 4class User 5{ 6public: 7 static vector<Tile *> allowedTiles; 8 static void staticCtor(); 9 wstring name; 10 wstring sessionId; 11 wstring mpPassword; 12 13 User(const wstring& name, const wstring& sessionId); 14};