mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
6 lines
161 B
C#
6 lines
161 B
C#
namespace PKHeX.Core;
|
|
|
|
public readonly record struct LearnVersion(int Level, GameVersion Game = GameVersion.Any)
|
|
{
|
|
public bool IsLevelUp => Level >= 0;
|
|
}
|