PKHeX/PKHeX.Core/PKM/HOME/IPokerusStatus.cs
2023-07-09 14:10:40 -07:00

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; }
}