Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import org.bukkit.plugin.java.JavaPlugin;
  2.  
  3. public class Main extends JavaPlugin
  4. {
  5.  
  6. @Override
  7. public void onEnable()
  8. {
  9.  
  10. System.out.println("ENABLED");
  11.  
  12. getCommand("test").setExecutor(new TestCommands(this));
  13.  
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement