4jcraft/Minecraft.World/Stats/GeneralStat.h
2026-03-06 12:16:41 -06:00

13 lines
226 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();
};