using Chickensoft.Collections; using Chickensoft.GodotNodeInterfaces; using System; using Zennysoft.Ma.Adapter; namespace Zennysoft.Game.Ma; public interface IItemSlot : IButton { public AutoProp Item { get; } public void SetItemEquipmentStatus(bool isEquipped); public event Action ItemPressed; public event Action ItemSelected; }