mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
d3749bd4b6
Move sociability inline dictionaries
9 lines
166 B
C#
9 lines
166 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Indicates how sociable the entity is.
|
|
/// </summary>
|
|
public interface ISociability
|
|
{
|
|
uint Sociability { get; set; }
|
|
}
|