mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
3389a224d1
Document in shortcuts Old behavior was undocumented, and was kinda janky. Closes #3376
12 lines
237 B
C#
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);
|
|
}
|