mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:13:36 +00:00
15 lines
272 B
C++
15 lines
272 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Stat.h"
|
|
|
|
class StatFormatter;
|
|
|
|
class GeneralStat : public Stat {
|
|
public:
|
|
GeneralStat(int id, const std::string& name, StatFormatter* formatter);
|
|
GeneralStat(int id, const std::string& name);
|
|
Stat* postConstruct();
|
|
};
|