namespace PKHeX.Core; /// /// Small general purpose value passing object with misc data pertaining to an encountered Species. /// public interface IDexLevel { ushort Species { get; } byte Form { get; } byte LevelMax { get; } }