2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-01-10 19:48:53 +00:00
PKHeX/PKHeX.Core/Ribbons/ISociability.cs
Kurt 691f941bb6 Add savedata models
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>
2022-02-04 17:31:20 -08:00

9 lines
166 B
C#

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