the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 12 lines 236 B view raw
1#pragma once 2using namespace std; 3 4#include "Stat.h" 5 6class GeneralStat : public Stat 7{ 8public: 9 GeneralStat(int id, const wstring& name, StatFormatter *formatter); 10 GeneralStat(int id, const wstring& name); 11 Stat *postConstruct(); 12};