mirror of
https://git.neolegacy.dev/Elysium/Project-Elysium.git
synced 2026-08-09 15:41:22 +00:00
12 lines
204 B
C++
12 lines
204 B
C++
#include "stdafx.h"
|
|
#include "ItemStat.h"
|
|
|
|
ItemStat::ItemStat(int id, const wstring& name, int itemId) : Stat( id, name ), itemId(itemId)
|
|
{
|
|
}
|
|
|
|
int ItemStat::getItemId()
|
|
{
|
|
return itemId;
|
|
}
|