Guest User

Untitled

a guest
Feb 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package com.bukkit.quackster.MoreCoal;
  2.  
  3. import com.bukkit.quackster.MoreCoal.MoreCoal;
  4. import org.bukkit.event.player.PlayerListener;
  5.  
  6. /*
  7.  * @author Quackster
  8.  */
  9.  
  10. public class MoreCoalPlayerListener extends PlayerListener{
  11.  
  12.     public MoreCoal plugin = null;
  13.  
  14.    
  15.     public MoreCoalPlayerListener(MoreCoal instance) {
  16.         setPlugin(instance);
  17.     }
  18.  
  19.     //Get the plugin
  20.     public MoreCoal getPlugin() {
  21.         return plugin;
  22.     }
  23.  
  24.     //Set the plugin
  25.     public void setPlugin(MoreCoal plugin) {
  26.         this.plugin = plugin;
  27.     }
  28. }
Add Comment
Please, Sign In to add comment