mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
e1414a0bea
No code changes
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; }
|
|
}
|