PKHeX/PKHeX.Core/PKM/Shared/IShiny.cs
Kurt 565f161226 Show shiny state of encounter in db
Force shiny state for GO encounters

For encounters, this interface property is mainly just for exposing metadata for sprites.
2021-05-18 10:36:45 -07: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; }
}
}