mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-28 06:50:23 +00:00
14 lines
295 B
C#
14 lines
295 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface that exposes a boolean indicating if the object is a shiny.
|
|||
|
/// </summary>
|
|||
|
public interface IShiny
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Is definitively a shiny.
|
|||
|
/// </summary>
|
|||
|
bool IsShiny { get; }
|
|||
|
}
|
|||
|
}
|