4jcraft/Minecraft.World/Stats/GeneralStat.cpp
2026-03-13 17:06:56 -05:00

15 lines
452 B
C++

#include "../Platform/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;
}