PKHeX/PKHeX.Core/PKM/Shared/IAffection.cs
Kurt 00443dcae4 Minor clean
add xmldoc
remove unnecessary array resizes (see 9f20aa2f4f )
show more extrabytes for gen8; remove unused byte accessor functions
2020-08-02 15:51:22 -07:00

11 lines
288 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
{
int OT_Affection { get; set; }
int HT_Affection { get; set; }
}
}