PKHeX/PKHeX.Core/PKM/Interfaces/IShadowPKM.cs
2022-03-06 12:06:50 -08:00

14 lines
No EOL
377 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Interface that exposes Shadow details for the object.
/// </summary>
/// <remarks>Used only for Colosseum/XD <see cref="PKM"/> that were shadow encounters.</remarks>
public interface IShadowPKM
{
ushort ShadowID { get; set; }
int Purification { get; set; }
bool IsShadow { get; }
}
}