PKHeX/PKHeX.Core/Legality/Evolutions/EvoCriteria.cs
Kurt 7f6f7a7bad Misc simplifications
reduce nesting (evo.RequiresLevelUp is checked twice, only check once
and handle path)
compact some methods
seal some classes
add a little xmldoc to exposed members
2018-07-01 19:55:23 -07:00

10 lines
267 B
C#

namespace PKHeX.Core
{
public sealed class EvoCriteria : DexLevel
{
public int MinLevel { get; set; }
public bool RequiresLvlUp { get; set; }
public int Form { get; set; } = -1;
public int Method { get; set; } = -1;
}
}