mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
13 lines
340 B
C#
13 lines
340 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 IShadowCapture
|
|
{
|
|
ushort ShadowID { get; set; }
|
|
int Purification { get; set; }
|
|
|
|
bool IsShadow { get; }
|
|
}
|