mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
21cdf4f642
wonder if it's possible to provide a more lightweight core by pulling out legality stuff to a separate project?
15 lines
465 B
C#
15 lines
465 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Small general purpose value passing object with misc data pertaining to an encountered Species.
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|