mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
b20566eb59
Some interfaces aren't needed to be exposed as int
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; }
|
|
}
|
|
}
|