mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 15:57:03 -05:00
15 lines
296 B
C#
15 lines
296 B
C#
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
|
|
}
|
|
|
|
} |