PKHeX/PKHeX.Core/PKM/Interfaces/Metadata/IShiny.cs

13 lines
253 B
C#
Raw Normal View History

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