mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 17:03:12 +00:00
9 lines
193 B
C#
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; }
|
|
}
|