mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
12 lines
308 B
C#
12 lines
308 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Tuple containing data for a <see cref="Slot"/> and the originating <see cref="View"/>
|
||
|
/// </summary>
|
||
|
/// <typeparam name="T"></typeparam>
|
||
|
public class SlotViewInfo<T>
|
||
|
{
|
||
|
public ISlotInfo Slot;
|
||
|
public ISlotViewer<T> View;
|
||
|
}
|
||
|
}
|