mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-21 17:03:58 +00:00
12 lines
224 B
C#
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; }
|
|
}
|