public SlotData(string slotID, SlotConfigID internalSlotID, Vector2 slotPOS, SlotType slotType)
 {
     SlotID = slotID;
     SlotConfigID = internalSlotID;
     SlotPos = slotPOS;
     SlotType = slotType;
 }
        public static int GetSeamothSlotInt(SlotConfigID slotID)
        {
            for (int i = 0; i < SessionSeamothSlots.Count; i++)
            {
                if (SessionSeamothSlots[i].SlotConfigID == slotID)
                {
                    return(i);
                }
            }

            return(-1);
        }