2021-11-19 18:23:49 -08:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Exposes a friendship value with the original trainer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IFixedOTFriendship
|
|
|
|
|
{
|
2022-03-05 18:30:35 -08:00
|
|
|
|
byte OT_Friendship { get; }
|
2021-11-19 18:23:49 -08:00
|
|
|
|
}
|
|
|
|
|
}
|