PKHeX/PKHeX.Core/PKM/Shared/IAffection.cs
Kurt 85d1b0e7ad Split gen6/7 affection stats to interface
not in future formats, doesn't belong
2020-08-02 11:06:30 -07:00

8 lines
150 B
C#

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