mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 22:44:25 -05:00
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
13 lines
324 B
C#
13 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;
|
|
}
|
|
}
|