Organized Plugins By Language

This commit is contained in:
Konloch 2022-01-17 18:44:12 -06:00
parent edd27ea458
commit dd59d8753e
10 changed files with 0 additions and 0 deletions

15
plugins/ruby/Skeleton.rb Normal file
View file

@ -0,0 +1,15 @@
require 'java'
java_import 'the.bytecode.club.bytecodeviewer.api.Plugin'
java_import 'the.bytecode.club.bytecodeviewer.api.PluginConsole'
java_import 'java.lang.System'
java_import 'java.util.ArrayList'
java_import 'org.objectweb.asm.tree.ClassNode'
class Skeleton < Plugin
def execute(classNodeList)
gui = PluginConsole.new "Skeleton"
gui.setVisible(true)
gui.appendText("executed skeleton")
end
end