bcv-vf/plugins/Skeleton.gy

15 lines
361 B
Plaintext

import org.objectweb.asm.tree.ClassNode
import the.bytecode.club.bytecodeviewer.api.Plugin
import the.bytecode.club.bytecodeviewer.api.PluginConsole
class Skeleton extends Plugin {
@Override
void execute(List<ClassNode> classNodesList) {
PluginConsole gui = new PluginConsole("Skeleton")
gui.setVisible(true)
gui.appendText("executed skeleton")
}
}