mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-05 02:43:00 +00:00
8 lines
208 B
C++
8 lines
208 B
C++
#include "ItemStat.h"
|
|
#include "minecraft/stats/Stat.h"
|
|
|
|
ItemStat::ItemStat(int id, const std::wstring& name, int itemId)
|
|
: Stat(id, name), itemId(itemId) {}
|
|
|
|
int ItemStat::getItemId() { return itemId; }
|