Example Update

This commit is contained in:
Konloch 2022-01-17 18:58:52 -06:00
parent ec0ab2daac
commit 590115d899

View file

@ -1,6 +1,6 @@
function execute(classNodeList) { function execute(classNodeList) {
var PluginConsole = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole"); var PluginConsole = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole");
var gui = new PluginConsole("Skeleton"); var gui = new PluginConsole("Skeleton Title");
gui.setVisible(true); gui.setVisible(true);
gui.appendText("executed skeleton"); gui.appendText("executed skeleton example");
} }