mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
f83a9bf833
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
9 lines
236 B
C#
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; }
|
|
}
|