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