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

13 lines
291 B
C#
Raw Normal View History

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