PKHeX/PKHeX.WinForms/Controls/PKM Editor/IMainEditor.cs

11 lines
220 B
C#
Raw Normal View History

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