mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
26 lines
427 B
C#
26 lines
427 B
C#
using HISP.Security;
|
|
namespace HISP.Game
|
|
{
|
|
class ItemInstance
|
|
{
|
|
public int RandomId;
|
|
public int ItemId;
|
|
|
|
|
|
|
|
public Item.ItemInformation GetItemInfo()
|
|
{
|
|
return Item.GetItemById(ItemId);
|
|
|
|
}
|
|
|
|
public ItemInstance(int id,int randomId = -1)
|
|
{
|
|
RandomId = RandomID.NextRandomId(randomId);
|
|
|
|
ItemId = id;
|
|
|
|
}
|
|
|
|
}
|
|
}
|