PKHeX/PKHeX.Core/PKM/Shared/INoble.cs
Kurt 429c80e9f5 Add new abstractions for pkm/personal/mysterygift
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
2022-02-04 17:26:15 -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; }
}