mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
61dc9a45ae
Closes #3012
14 lines
No EOL
374 B
C#
14 lines
No EOL
374 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; }
|
|
|
|
bool IsShadow { get; }
|
|
}
|
|
} |