mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
e1414a0bea
No code changes
10 lines
215 B
C#
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; }
|
|
}
|
|
}
|