PKHeX/PKHeX.Core/Legality/Evolutions/EvoCriteria.cs
Kurt 2e1081086d Refactoring
Split evolution data specific DexLevel properties from DexLevel

use IReadOnlyList instead of IList for covariant collection
2018-06-18 19:10:21 -07:00

10 lines
258 B
C#

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