PKHeX/PKHeX.Core/Legality/Encounters/IShinyPotential.cs
2022-03-06 12:06:50 -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; }
}