Files
2026-03-08 10:09:54 +01:00

13 lines
248 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();
};