mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
b20566eb59
Some interfaces aren't needed to be exposed as int
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; }
|
|
}
|
|
}
|