2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-01-11 12:08:57 +00:00
PKHeX/PKHeX.Core/PKM/Shared/INature.cs

7 lines
101 B
C#
Raw Normal View History

2019-11-16 01:34:18 +00:00
namespace PKHeX.Core
{
public interface INature
{
int Nature { get; set; }
}
}