Files
LegacyMultiplayerProject/Minecraft.World/GeneralStat.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

13 lines
236 B
C++

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