mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
11 lines
214 B
C#
11 lines
214 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Exposes a friendship value with the original trainer.
|
|||
|
/// </summary>
|
|||
|
public interface IFixedOTFriendship
|
|||
|
{
|
|||
|
int OT_Friendship { get; }
|
|||
|
}
|
|||
|
}
|