aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/GeneralStat.h
blob: 27fe1b549f9a3134ed5ca0be143e79e45b575644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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();
};