PKHeX/PKHeX.Core/PKM/Interfaces/Templates/IAlphaReadOnly.cs

10 lines
193 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Interface that exposes an indication if the Pokémon is an alpha Pokémon.
/// </summary>
public interface IAlphaReadOnly
{
bool IsAlpha { get; }
}