mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
5d3bc289b6
Mark things as sealed as they shouldn't be inherited from or overriden in a derived class.
22 lines
743 B
C#
22 lines
743 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
internal sealed class MoveParseSource
|
|
{
|
|
private static readonly int[] Empty = Array.Empty<int>();
|
|
public IReadOnlyList<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;
|
|
}
|
|
}
|