mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-22 01:55:10 -05:00
19 lines
534 B
C#
19 lines
534 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Source that stores move display state.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public interface ILegalMoveDisplaySource<T>
|
|
{
|
|
void ReloadMoves(LegalMoveInfo info);
|
|
void ReloadMoves(IReadOnlyList<T> moves);
|
|
bool GetIsMoveBoxOrdered(int index);
|
|
void SetIsMoveBoxOrdered(int index, bool value);
|
|
|
|
/// <summary> Creates a shallow copy of the array reference for use in binding. </summary>
|
|
IReadOnlyList<T> DataSource { get; }
|
|
}
|