mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-19 23:08:34 +00:00
12 lines
No EOL
342 B
C#
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; }
|
|
}
|
|
} |