mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-08 00:01:45 -05:00
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
11 lines
228 B
C#
11 lines
228 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
string Name { get; }
|
|
void Initialize(params object[] args);
|
|
void NotifySaveLoaded();
|
|
ISaveFileProvider SaveFileEditor { get; }
|
|
}
|
|
}
|