PKHeX/PKHeX.Core/PKM/Shared/IAffection.cs

12 lines
288 B
C#
Raw Normal View History

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