PKHeX/PKHeX.Core/PKM/Interfaces/INature.cs

13 lines
246 B
C#
Raw Normal View History

2022-08-21 08:39:16 +00:00
namespace PKHeX.Core;
2022-08-21 08:39:16 +00:00
/// <summary>
/// Exposes details about the entity's Nature
/// </summary>
public interface INature : INatureReadOnly
2019-11-16 01:34:18 +00:00
{
2022-08-21 08:39:16 +00:00
/// <summary>
/// Nature the entity has.
/// </summary>
new int Nature { get; set; }
}