PKHeX/PKHeX.Core/PKM/Interfaces/Templates/IFixedOTFriendship.cs

10 lines
185 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Exposes a friendship value with the original trainer.
/// </summary>
public interface IFixedOTFriendship
{
byte OT_Friendship { get; }
}