PKHeX/PKHeX.Core/PKM/Interfaces/ISociability.cs

10 lines
166 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Indicates how sociable the entity is.
/// </summary>
public interface ISociability
{
uint Sociability { get; set; }
}