mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 14:12:39 +00:00
12 lines
242 B
C#
12 lines
242 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Holds the Pokerus status of a <see cref="PKM"/>.
|
|
/// </summary>
|
|
public interface IPokerusStatus
|
|
{
|
|
/// <summary>
|
|
/// Pokerus Strain and Duration
|
|
/// </summary>
|
|
byte PKRS { get; set; }
|
|
}
|