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

9 lines
150 B
C#
Raw Normal View History

namespace PKHeX.Core
{
public interface IAffection
{
int OT_Affection { get; set; }
int HT_Affection { get; set; }
}
}