mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:53:36 +00:00
18 lines
423 B
C++
18 lines
423 B
C++
#include "../Build/stdafx.h"
|
|
#include "../Headers/net.minecraft.stats.h"
|
|
#include "GeneralStat.h"
|
|
|
|
GeneralStat::GeneralStat(int id, const std::wstring& name, StatFormatter *formatter) : Stat(id, name, formatter)
|
|
{
|
|
}
|
|
|
|
GeneralStat::GeneralStat(int id, const std::wstring& name) : Stat(id, name)
|
|
{
|
|
}
|
|
|
|
Stat *GeneralStat::postConstruct()
|
|
{
|
|
Stat::postConstruct();
|
|
Stats::generalStats->push_back(this);
|
|
return this;
|
|
} |