bcv-vf/plugins/Skeleton.gy
Kalen Kinloch 06ef9408a4 First Commit
First commit, beta 1.0, report all bugs to konloch@gmail.com or create a
thread on http://the.bytecode.club
2014-10-18 16:39:09 -07:00

14 lines
420 B
Text

import the.bytecode.club.bytecodeviewer.plugins.Plugin;
import the.bytecode.club.bytecodeviewer.plugins.PluginConsole;
import java.util.ArrayList;
import org.objectweb.asm.tree.ClassNode;
public class Skeleton extends Plugin {
@Override
public void execute(ArrayList<ClassNode> classNodesList) {
PluginConsole gui = new PluginConsole("Skeleton");
gui.setVisible(true);
gui.appendText("exceuted skeleton");
}
}