feat: Added support for adding custom providers through C#

This commit is contained in:
WerWolv
2024-03-10 22:05:26 +01:00
parent d817a813b0
commit 0186f2f456
8 changed files with 221 additions and 32 deletions

View File

@@ -1,10 +1,13 @@
using ImHex;
using System.Drawing;
class Script {
public static void OnLoad() {
// This function is executed the first time the Plugin is loaded
}
class Script
{
public static void Main()
{
UI.ShowMessageBox("Hello World!");
// This function is executed when the plugin is selected in the "Run Script..." menu
}
}