Guest User

Minecraft plugin

a guest
Feb 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package me.emis.labaspasauli;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. import me.emis.labaspasauli.commands.HelloCommand;
  6.  
  7. public class Main extends JavaPlugin {
  8.    
  9.     @Override
  10.     public void onEnable() {
  11.         new HelloCommand(this);
  12.     }
  13. }
Add Comment
Please, Sign In to add comment