PKHeX/PKHeX.WinForms/Controls/PKM Editor/IMainEditor.cs
Kurt 857919bd28 Add basic plugin sys
reference PKHeX.Core, main window loads assemblies & initializes
providing an ISaveProvider and the menustrip control (to insert controls
into)

pretty rough but should allow for inserting external control buttons &
allowing it to edit the UI a little

example: https://github.com/kwsch/PKHeXPluginExample
feedback is appreciated
2018-05-13 12:49:29 -07:00

10 lines
No EOL
178 B
C#

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