PKHeX/PKHeX.Core/PKM/Shared/IShadowPKM.cs

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