mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 07:50:32 +00:00
7 lines
161 B
C#
7 lines
161 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
public readonly record struct LearnVersion(int Level, GameVersion Game = GameVersion.Any)
|
|||
|
{
|
|||
|
public bool IsLevelUp => Level >= 0;
|
|||
|
}
|