PKHeX/PKHeX.Core/PKM/Shared/IShadowPKM.cs
2020-10-06 22:36:27 -07:00

14 lines
No EOL
374 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
{
int ShadowID { get; set; }
int Purification { get; set; }
bool IsShadow { get; }
}
}