InventoryItemContainer
user_3183455
csharp
a year ago
387 B
12
Indexable
using System;
namespace CuongMono.Item.Inventory
{
[Serializable]
public class InventoryItemContainer : ItemContainer<InventoryItem>
{
public InventoryItemContainer(int slots) : base(slots)
{
for (int i = 0; i < slots; i++)
{
this.itemSlots[i] = new InventoryItemSlot();
}
}
}
}Editor is loading...
Leave a Comment