PKHeX/PKHeX.Core/PKM/Interfaces/IShadowPKM.cs

14 lines
336 B
C#
Raw Normal View History

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; }
}