PKHeX/PKHeX.Core/PKM/Shared/IAlpha.cs
Kurt 429c80e9f5 Add new abstractions for pkm/personal/mysterygift
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
2022-02-04 17:26:15 -08:00

9 lines
193 B
C#

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