using System.Collections.Generic; using PKHeX.Core; namespace PKHeX.WinForms.Controls { public interface ISlotViewer { SlotChange GetSlotData(T view); SlotChangeManager M { get; } IList SlotPictureBoxes { get; } int ViewIndex { get; } } }