2023-07-15 14:29:14 +02:00
|
|
|
|
using ImHex;
|
2024-03-10 22:05:26 +01:00
|
|
|
|
class Script {
|
|
|
|
|
|
|
|
|
|
public static void OnLoad() {
|
|
|
|
|
// This function is executed the first time the Plugin is loaded
|
|
|
|
|
}
|
2023-07-15 14:29:14 +02:00
|
|
|
|
|
|
|
|
|
public static void Main()
|
|
|
|
|
{
|
2024-03-10 22:05:26 +01:00
|
|
|
|
// This function is executed when the plugin is selected in the "Run Script..." menu
|
2023-07-15 14:29:14 +02:00
|
|
|
|
}
|
2024-03-10 22:05:26 +01:00
|
|
|
|
|
2023-07-15 14:29:14 +02:00
|
|
|
|
}
|