PKHeX/PKHeX.Core/PKM/Shared/IFixedOTFriendship.cs
Kurt b20566eb59 Use actual primitive instead of int
Some interfaces aren't needed to be exposed as int
2022-03-05 18:30:35 -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; }
}
}