mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
857919bd28
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
10 lines
No EOL
178 B
C#
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; }
|
|
}
|
|
} |