Advertisement
TechManDylan

Untitled

Mar 9th, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package me.TechManDylan.bukkit.TheReaperThatCares;
  2.  
  3. import org.bukkit.plugin.PluginManager;
  4. import org.bukkit.plugin.java.JavaPlugin;
  5.  
  6. public class TheReaperThatCares extends JavaPlugin {
  7.  
  8.     public void onEnable(){
  9.         PluginManager pm = this.getServer().getPluginManager();
  10.         pm.registerEvents(new TheReaperThatCaresPlayerListener(), this);
  11.     }
  12.     public void onDisable(){
  13.        
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement