mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 11:36:34 +00:00
11 lines
233 B
C++
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();
|
|
};
|