2023-07-15 14:29:14 +02:00
|
|
|
|
using ImHex;
|
2024-03-12 23:17:49 +01:00
|
|
|
|
using ImGuiNET;
|
2024-03-14 18:58:39 +01:00
|
|
|
|
|
2024-05-17 20:24:28 +02:00
|
|
|
|
class Script : IScript {
|
2024-03-10 22:05:26 +01:00
|
|
|
|
|
2024-05-18 12:57:29 +02:00
|
|
|
|
public static int OnLoad()
|
2024-03-13 19:49:48 +01:00
|
|
|
|
{
|
2024-03-10 22:05:26 +01:00
|
|
|
|
// This function is executed the first time the Plugin is loaded
|
2024-05-18 12:57:29 +02:00
|
|
|
|
|
|
|
|
|
return 1;
|
2024-03-10 22:05:26 +01:00
|
|
|
|
}
|
2023-07-15 14:29:14 +02:00
|
|
|
|
|
2024-05-18 12:57:29 +02:00
|
|
|
|
public static int Main()
|
2023-07-15 14:29:14 +02:00
|
|
|
|
{
|
2024-03-10 22:05:26 +01:00
|
|
|
|
// This function is executed when the plugin is selected in the "Run Script..." menu
|
2024-05-18 12:57:29 +02:00
|
|
|
|
|
|
|
|
|
return 1;
|
2023-07-15 14:29:14 +02:00
|
|
|
|
}
|
2024-03-10 22:05:26 +01:00
|
|
|
|
|
2023-07-15 14:29:14 +02:00
|
|
|
|
}
|