2014-11-21 22:55:55 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.api.*;
|
2014-10-18 23:39:09 +00:00
|
|
|
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);
|
2015-03-01 06:24:49 +00:00
|
|
|
gui.appendText("executed skeleton");
|
2014-10-18 23:39:09 +00:00
|
|
|
}
|
|
|
|
}
|