blob: 3a6ea1af346c45508753322b077c5bc83f9d2b19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "stdafx.h"
#include "net.minecraft.stats.h"
#include "GeneralStat.h"
GeneralStat::GeneralStat(int id, const wstring& name, StatFormatter *formatter) : Stat(id, name, formatter)
{
}
GeneralStat::GeneralStat(int id, const wstring& name) : Stat(id, name)
{
}
Stat *GeneralStat::postConstruct()
{
Stat::postConstruct();
Stats::generalStats->push_back(this);
return this;
}
|