IItemSlot

 avatar
user_3183455
csharp
a year ago
449 B
5
Indexable
namespace CuongMono.Item
{
    public interface IItemSlot<T> where T : Item
    {
        public T Item { get; set; }
        public int Quanity {  get; set; }
        public int DuranceLeft { get; set; }
 
        void CheckQuanityToReset();
        void CheckDuranceLeftToReset();
 
        void ResetSlot();
 
        IItemSlot<T> Clone();
 
        public int GetRemainingSlot();
 
        public int GetLostDurance();
    }
}
Editor is loading...
Leave a Comment