PKHeX/PKHeX.Core/PKM/Shared/IAffection.cs
Kurt b20566eb59 Use actual primitive instead of int
Some interfaces aren't needed to be exposed as int
2022-03-05 18:30:35 -08:00

11 lines
290 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Exposes <see cref="OT_Affection"/> and <see cref="HT_Affection"/> properties used by Gen6/7.
/// </summary>
public interface IAffection
{
byte OT_Affection { get; set; }
byte HT_Affection { get; set; }
}
}