Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package fr.vanish.Vanish;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Vanish extends JavaPlugin {
  6.  
  7. public void onEnable(){
  8. RegisterCommand();
  9. }
  10.  
  11. public void onDisable(){
  12.  
  13. }
  14.  
  15. private void RegisterCommand(){
  16. getCommand("devanish").setExecutor(new DevanishCommand());
  17. getCommand("vanish").setExecutor(new VanishCommand());
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement