mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-15 12:10:44 -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;
|
|
}
|