mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
95b4d0820d
amount of pkm obj classes is pretty high, move the static utility classes to another folder breaks usage of pkm.ShowdownText; removes a dependency from PKM.
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; }
|
|
}
|
|
} |