mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 15:38:12 +05:00
13 lines
236 B
C++
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();
|
|
};
|