mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 20:53:39 +00:00
8 lines
206 B
C++
8 lines
206 B
C++
#include "../Platform/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; }
|