PKHeX/PKHeX.Core/PKM/Interfaces/IAffection.cs
2022-03-06 12:06:50 -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; }
}
}