PKHeX/PKHeX.WinForms/Controls/SAV Editor/SlotViewer.cs
Kurt 232427d002 Rework slot interactivity a little
decentralize some logic, individual view providers now provide the
details rather than detecting from a huge array.

#1925
2018-05-05 08:07:22 -07:00

13 lines
293 B
C#

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