mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-15 08:31:21 -05: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;
|
|
}
|