4jcraft/targets/minecraft/stats/GeneralStat.h
2026-04-01 13:27:58 -05:00

15 lines
274 B
C++

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