1
0
mirror of synced 2024-11-28 01:20:51 +01:00
ImHex/plugins/script_loader/templates/CSharp/ImHexScript/Program.cs

20 lines
358 B
C#
Raw Normal View History

using ImHex;
using ImGuiNET;
class Script : IScript {
public static int OnLoad()
{
// This function is executed the first time the Plugin is loaded
return 1;
}
public static int Main()
{
// This function is executed when the plugin is selected in the "Run Script..." menu
return 1;
}
}