mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
2e1081086d
Split evolution data specific DexLevel properties from DexLevel use IReadOnlyList instead of IList for covariant collection
10 lines
258 B
C#
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;
|
|
}
|
|
}
|