mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-26 12:23:11 +00:00
12 lines
264 B
C#
12 lines
264 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Small general purpose value passing object with misc data pertaining to an encountered Species.
|
|||
|
/// </summary>
|
|||
|
public interface IDexLevel
|
|||
|
{
|
|||
|
ushort Species { get; }
|
|||
|
byte Form { get; }
|
|||
|
byte LevelMax { get; }
|
|||
|
}
|