Advertisement
Guest User

Core.java

a guest
Jan 7th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package eu.trinitydev.staff;
  2.  
  3. import eu.trinitydev.staff.commands.Staff;
  4. import org.bukkit.plugin.java.JavaPlugin;
  5.  
  6. /**
  7. * Created by Thiemo on 7-1-2016.
  8. * No part of this publication may be reproduced, distributed, or transmitted in any form or by any means.
  9. * Copyright © 2016 by Thiemo
  10. */
  11. public class Core extends JavaPlugin {
  12.  
  13. public void onEnable() {
  14. saveDefaultConfig();
  15.  
  16. getCommand("staff").setExecutor(new Staff(this));
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement