PKHeX/PKHeX.Core/PKM/Interfaces/INature.cs
2022-08-21 01:39:16 -07:00

12 lines
224 B
C#

namespace PKHeX.Core;
/// <summary>
/// Exposes details about the entity's Nature
/// </summary>
public interface INature
{
/// <summary>
/// Nature the entity has.
/// </summary>
int Nature { get; set; }
}