Advertisement
codex01

Untitled

Aug 10th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package tut;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Main extends JavaPlugin {
  6.  
  7. @Override
  8. public void onEnable() {
  9. System.out.println("[Tutorial] Aktiviert!");
  10. }
  11. @Override
  12. public void onDisable() {
  13. System.out.println("[Tutorial] Deaktiviert!");
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement