PKHeX/PKHeX.Core/PKM/Shared/IShinyPotential.cs
Kurt f83a9bf833 Expose shiny potential value
Not really digging it currently as it doesn't cover multi-state like AlwaysStar-Or-Never, but that single edge case can be handled elsewhere
2022-01-07 17:48:12 -08:00

9 lines
236 B
C#

namespace PKHeX.Core;
/// <summary>
/// Interface that exposes a shiny potential state indicating what kinds of <see cref="Core.Shiny"/> can be expressed.
/// </summary>
public interface IShinyPotential
{
Shiny Shiny { get; }
}