mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
565f161226
Force shiny state for GO encounters For encounters, this interface property is mainly just for exposing metadata for sprites.
13 lines
295 B
C#
13 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; }
|
|
}
|
|
}
|