mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
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; }
|
|
}
|
|
} |