PKHeX/PKHeX.Core/PKM/Interfaces/Templates/INatureReadOnly.cs

13 lines
227 B
C#
Raw Normal View History

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