the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 11 lines 193 B view raw
1#include "stdafx.h" 2#include "ItemStat.h" 3 4ItemStat::ItemStat(int id, const wstring& name, int itemId) : Stat( id, name ), itemId(itemId) 5{ 6} 7 8int ItemStat::getItemId() 9{ 10 return itemId; 11}