namespace PKHeX.Core; /// /// Interface that exposes Shadow details for the object. /// /// Used only for Colosseum/XD that were shadow encounters. public interface IShadowPKM { ushort ShadowID { get; set; } int Purification { get; set; } bool IsShadow { get; } }