the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 14 lines 275 B view raw
1#pragma once 2 3class LevelRuleset; 4 5class LevelRules 6{ 7public: 8 LevelRules(); 9 10 void addLevelRule(const wstring &displayName, PBYTE pbData, DWORD dwLen); 11 void addLevelRule(const wstring &displayName, LevelRuleset *rootRule); 12 13 void removeLevelRule(LevelRuleset *removing); 14};