PKHeX/PKHeX.Core/Legality/Structures/DexLevel.cs
2017-11-06 22:44:51 -08:00

15 lines
465 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Small general purpose value passing object with misc data pertaining to an encountered Species.
/// </summary>
public class DexLevel
{
public int Species { get; set; }
public int Level { get; set; }
public int MinLevel { get; set; }
public bool RequiresLvlUp { get; set; }
public int Form { get; set; } = -1;
public int Flag { get; set; } = -1;
}
}