mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
429c80e9f5
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
9 lines
192 B
C#
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; }
|
|
}
|