PKHeX/PKHeX.Core/Legality/Evolutions/DexLevel.cs
Kurt 21cdf4f642 Reorganization
wonder if it's possible to provide a more lightweight core by pulling
out legality stuff to a separate project?
2018-03-05 20:49:45 -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;
}
}