InventoryItemSlotUI

 avatar
user_3183455
csharp
a year ago
432 B
7
Indexable
 
using UnityEngine;
 
namespace CuongMono.Item.Inventory
{
    public class InventoryItemSlotUI : AInventoryItemSlotUI
    {
        [Header("Inventory Item Slot UI")]
        [SerializeField] protected Inventory inventory;
        public override InventoryItemSlot ItemSlot
        {
            get => (InventoryItemSlot)this.inventory.itemContainer.itemSlots[this.SlotIndex];
            set { }
        }
    }
}
Editor is loading...
Leave a Comment