mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 11:16:48 +00:00
12 lines
207 B
C++
12 lines
207 B
C++
#include "../Build/stdafx.h"
|
|
#include "ItemStat.h"
|
|
|
|
ItemStat::ItemStat(int id, const std::wstring& name, int itemId) : Stat( id, name ), itemId(itemId)
|
|
{
|
|
}
|
|
|
|
int ItemStat::getItemId()
|
|
{
|
|
return itemId;
|
|
}
|