PKHeX/PKHeX.Core/Legality/Structures/DexLevel.cs
Kurt 3f38b123a3 Refactoring
mostly renaming things, includes a little bit of added sugar and
splitting methods to simplify the codebase.

all methods are now PascalCase
2017-06-17 18:37:19 -07:00

12 lines
324 B
C#

namespace PKHeX.Core
{
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;
}
}