2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-03-05 07:47:38 +00:00
PKHeX/PKHeX.Core/PKM/Interfaces/INature.cs

7 lines
101 B
C#
Raw Normal View History

2019-11-15 17:34:18 -08:00
namespace PKHeX.Core
{
public interface INature
{
int Nature { get; set; }
}
}