PKHeX/PKHeX.Core/PKM/Interfaces/IDynamaxLevel.cs
Kurt 03182ebd3d Update 22.11.24
Adds support for Scarlet & Violet.

Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com>
Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
2022-11-24 17:42:17 -08:00

12 lines
310 B
C#

namespace PKHeX.Core;
/// <summary>
/// Exposes info about Dynamax potential
/// </summary>
public interface IDynamaxLevel : IDynamaxLevelReadOnly
{
/// <summary>
/// Dynamax Level used by <see cref="GameVersion.SWSH"/> format entity data.
/// </summary>
new byte DynamaxLevel { get; set; }
}