PKHeX/PKHeX.Core/Legality/Moves/MoveParseSource.cs

20 lines
640 B
C#
Raw Normal View History

namespace PKHeX.Core
{
internal class MoveParseSource
{
private static readonly int[] Empty = new int[0];
public int[] CurrentMoves { get; set; } = Empty;
public int[] SpecialSource { get; set; } = Empty;
public int[] NonTradeBackLevelUpMoves { get; set; } = Empty;
/// <summary>
/// Base moves from a standard encounter
/// </summary>
public int[] Base { get; set; } = Empty;
public int[] EggLevelUpSource { get; set; } = Empty;
public int[] EggMoveSource { get; set; } = Empty;
public int[] EggEventSource { get; set; } = Empty;
}
}