mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-27 12:53:14 +00:00
e1414a0bea
No code changes
11 lines
290 B
C#
11 lines
290 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
|
|
{
|
|
byte OT_Affection { get; set; }
|
|
byte HT_Affection { get; set; }
|
|
}
|
|
}
|