mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-17 01:28:00 +00:00
232427d002
decentralize some logic, individual view providers now provide the details rather than detecting from a huge array. #1925
13 lines
293 B
C#
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; }
|
|
}
|
|
}
|