PKHeX/PKHeX.Core/PKM/Interfaces/ISociability.cs
Kurt d3749bd4b6 Minor tweaks
Move sociability
inline dictionaries
2022-04-09 00:08:24 -07:00

9 lines
166 B
C#

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