InventoryItemSlotUI

user_3183455 avatar
user_3183455
csharp
07/08/2024 7:29 AM
576 B
32
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