mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-22 02:13:10 +00:00
13 lines
227 B
C#
13 lines
227 B
C#
|
namespace PKHeX.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Exposes details about the entity's Nature
|
||
|
/// </summary>
|
||
|
public interface INatureReadOnly
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Nature the entity has.
|
||
|
/// </summary>
|
||
|
int Nature { get; }
|
||
|
}
|