mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-17 09:38:05 +00:00
14 lines
293 B
C#
14 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; }
|
|||
|
}
|
|||
|
}
|