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

13 lines
295 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Interface that exposes a boolean indicating if the object is a shiny.
/// </summary>
public interface IShiny
{
/// <summary>
/// Is definitively a shiny.
/// </summary>
bool IsShiny { get; }
}
}