mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-21 05:09:35 -05:00
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
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; }
|
|
}
|