blob: 18a47442fbf7f1e99a1ccdad28f2dc1f662db449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "stdafx.h"
#include "ItemStat.h"
ItemStat::ItemStat(int id, const wstring& name, int itemId) : Stat( id, name ), itemId(itemId)
{
}
int ItemStat::getItemId()
{
return itemId;
}
|