4jcraft/Minecraft.World/net/minecraft/stats/GeneralStat.h

11 lines
233 B
C++

#pragma once
#include "Stat.h"
class GeneralStat : public Stat {
public:
GeneralStat(int id, const std::wstring& name, StatFormatter* formatter);
GeneralStat(int id, const std::wstring& name);
Stat* postConstruct();
};