blob: 80e4d8634c17faa327f417f107057605e6e4c00b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
using namespace std;
#include "Stat.h"
class ItemStat : public Stat
{
private:
const int itemId;
public:
ItemStat(int id, const wstring& name, int itemId);
int getItemId();
};
|