mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
11 lines
215 B
C#
11 lines
215 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Exposes a friendship value with the original trainer.
|
|
/// </summary>
|
|
public interface IFixedOTFriendship
|
|
{
|
|
byte OT_Friendship { get; }
|
|
}
|
|
}
|