PKHeX/PKHeX.WinForms/Controls/PKM Editor/IMainEditor.cs
Kurt 3389a224d1 Change stat label clicks to change nature instead
Document in shortcuts
Old behavior was undocumented, and was kinda janky.

Closes #3376
2022-01-25 16:45:41 -08:00

12 lines
237 B
C#

using PKHeX.Core;
namespace PKHeX.WinForms.Controls;
public interface IMainEditor : IPKMView
{
PKM Entity { get; }
SaveFile RequestSaveFile { get; }
void UpdateIVsGB(bool skipForm);
void ChangeNature(int newNature);
}