Advertisement
Guest User

Main.JAVA

a guest
Jan 29th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package fr.eric.monplugin;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. import fr.eric.monplugin.commands.commandTest;
  6.  
  7. public class Main extends JavaPlugin {
  8.  
  9. @Override
  10. public void onEnable() {
  11. System.out.println("Le plugin viens de s'allumer");
  12. getCommand("test").setExecutor(new commandTest());
  13. }
  14.  
  15. @Override
  16. public void onDisable() {
  17. System.out.println("Le plugin viens de s'éteindre");
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement