PKHeX/PKHeX.Core/PKM/Interfaces/INoble.cs
2022-03-06 12:06:50 -08:00

9 lines
192 B
C#

namespace PKHeX.Core;
/// <summary>
/// Interface that exposes an indication if the Pokémon is a Noble Pokémon.
/// </summary>
public interface INoble
{
bool IsNoble { get; set; }
}