mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 15:59:13 +00:00
10 lines
236 B
C#
10 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; }
|
|||
|
}
|