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