mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
e1414a0bea
No code changes
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; }
|
|
}
|