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