namespace PKHeX.Core; /// /// Exposes details about the entity's Nature /// public interface INature : INatureReadOnly { /// /// Nature the entity has. /// new int Nature { get; set; } }