mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-21 12:33:04 +00:00
8 lines
216 B
C++
8 lines
216 B
C++
#include "../../../Header Files/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; }
|