PKHeX/PKHeX.Core/Legality/Moves/MoveParseSource.cs
Kurt 8312c52cc1 Make Move[] readonly list
contract: don't modify the template movesets
mystery gift now exposes IRelearn, remove unnecessary type checks
2020-01-18 16:46:38 -08:00

22 lines
723 B
C#

using System;
using System.Collections.Generic;
namespace PKHeX.Core
{
internal class MoveParseSource
{
private static readonly int[] Empty = Array.Empty<int>();
public int[] CurrentMoves { get; set; } = Empty;
public IReadOnlyList<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 IReadOnlyList<int> EggEventSource { get; set; } = Empty;
}
}