mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:23:37 +00:00
13 lines
226 B
C++
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();
|
|
};
|