mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
7 lines
101 B
C#
7 lines
101 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface INature
|
|||
|
{
|
|||
|
int Nature { get; set; }
|
|||
|
}
|
|||
|
}
|