mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
10 lines
166 B
C#
10 lines
166 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Indicates how sociable the entity is.
|
|||
|
/// </summary>
|
|||
|
public interface ISociability
|
|||
|
{
|
|||
|
uint Sociability { get; set; }
|
|||
|
}
|