mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
f4bfdb8311
yay net 4.6 read more: http://justinvp.com/2015/07/20/array-empty/
21 lines
663 B
C#
21 lines
663 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
internal class MoveParseSource
|
|
{
|
|
private static readonly int[] Empty = Array.Empty<int>();
|
|
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;
|
|
}
|
|
}
|