a1dc3aecc6
* -----2.9.3-----: * 02/28/2015 - Added drag and drop for any file. * 02/28/2015 - Added ctrl + w to close the current opened tab. * 02/28/2015 - Updated to CFR 0_97.jar * 02/28/2015 - Fixed a concurrency issue with the decompilers. * 02/28/2015 - Added image resize via scroll on mouse. * 02/28/2015 - Added resource refreshing. * 02/28/2015 - Im Frizzy started working on Obfuscation.
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("executed skeleton");
|
|
}
|
|
} |