PKHeX/PKHeX.Core/PKM/Interfaces/INoble.cs

10 lines
192 B
C#
Raw Normal View History

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; }
}