mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-25 03:47:20 -05: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; }
|
|
}
|