Files
2026-03-01 12:16:08 +08:00

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