mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
00443dcae4
add xmldoc
remove unnecessary array resizes (see 9f20aa2f4f
)
show more extrabytes for gen8; remove unused byte accessor functions
11 lines
288 B
C#
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; }
|
|
}
|
|
}
|