mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-22 02:13:10 +00: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 IAlphaReadOnly
|
||
|
{
|
||
|
bool IsAlpha { get; }
|
||
|
}
|