mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
10 lines
193 B
C#
10 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; }
|
|
}
|