PKHeX/PKHeX.Core/PKM/Interfaces/IFixedOTFriendship.cs
2022-03-06 12:06:50 -08:00

10 lines
215 B
C#

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