fd9f07817d
2.9.0
13 lines
No EOL
348 B
Java
13 lines
No EOL
348 B
Java
import the.bytecode.club.bytecodeviewer.api.*;
|
|
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");
|
|
}
|
|
} |