the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "net.minecraft.stats.h"
3#include "GeneralStat.h"
4
5GeneralStat::GeneralStat(int id, const wstring& name, StatFormatter *formatter) : Stat(id, name, formatter)
6{
7}
8
9GeneralStat::GeneralStat(int id, const wstring& name) : Stat(id, name)
10{
11}
12
13Stat *GeneralStat::postConstruct()
14{
15 Stat::postConstruct();
16 Stats::generalStats->push_back(this);
17 return this;
18}