2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-02-20 07:18:34 +00:00
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; }
}