PKHeX/PKHeX.Core/PKM/IShadowPKM.cs
Kurt 69cf1eaa9c add more pkhex.core xml documentation
adds a bunch of documentation useful for those unfamiliar with the core
library
2017-10-23 23:12:58 -07:00

12 lines
No EOL
342 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; }
}
}