mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-03 09:19:13 +00:00
9 lines
150 B
C#
9 lines
150 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface IAffection
|
|||
|
{
|
|||
|
int OT_Affection { get; set; }
|
|||
|
int HT_Affection { get; set; }
|
|||
|
}
|
|||
|
}
|