mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 14:03:37 +00:00
9 lines
209 B
C++
9 lines
209 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; }
|