the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 28 lines 730 B view raw
1#pragma once 2using namespace std; 3 4class GameType; 5 6class LevelSummary 7{ 8 const wstring levelId; 9 const wstring levelName; 10 const __int64 lastPlayed; 11 const __int64 sizeOnDisk; 12 const bool requiresConversion; 13 GameType *gameMode; 14 const bool hardcore; 15 const bool _hasCheats; 16 17public: 18 LevelSummary(const wstring& levelId, const wstring& levelName, __int64 lastPlayed, __int64 sizeOnDisk, GameType *gameMode, bool requiresConversion, bool hardcore, bool hasCheats); 19 wstring getLevelId(); 20 wstring getLevelName(); 21 __int64 getSizeOnDisk(); 22 bool isRequiresConversion(); 23 __int64 getLastPlayed(); 24 int compareTo(LevelSummary *rhs); 25 GameType *getGameMode(); 26 bool isHardcore(); 27 bool hasCheats(); 28};