14 lines
361 B
Text
14 lines
361 B
Text
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")
|
|
}
|
|
|
|
}
|