mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:33:38 +00:00
12 lines
202 B
C++
12 lines
202 B
C++
#include "../Build/stdafx.h"
|
|
#include "ItemStat.h"
|
|
|
|
ItemStat::ItemStat(int id, const wstring& name, int itemId) : Stat( id, name ), itemId(itemId)
|
|
{
|
|
}
|
|
|
|
int ItemStat::getItemId()
|
|
{
|
|
return itemId;
|
|
}
|