the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 15 lines 169 B view raw
1#pragma once 2using namespace std; 3 4class PlayerInfo 5{ 6public: 7 wstring name; 8 int latency; 9 10 PlayerInfo(const wstring &name) 11 { 12 this->name = name; 13 latency = 0; 14 } 15};