mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
3f38b123a3
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
12 lines
324 B
C#
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;
|
|
}
|
|
}
|