Advertisement
Guest User

CloneTrait.class

a guest
Jan 12th, 2014
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.51 KB | None | 0 0
  1. package net.komputerking.java.pSync;
  2.  
  3. import net.citizensnpcs.api.event.NPCClickEvent;
  4. import net.citizensnpcs.api.trait.Trait;
  5. import org.bukkit.event.EventHandler;
  6.  
  7. public class CloneTrait extends Trait
  8. {
  9.   public CloneTrait()
  10.   {
  11.     super("Clone");
  12.   }
  13.  
  14.   @EventHandler
  15.   public void click(NPCClickEvent event)
  16.   {
  17.   }
  18.  
  19.   public void run()
  20.   {
  21.   }
  22.  
  23.   public void onAttach()
  24.   {
  25.   }
  26.  
  27.   public void onDespawn()
  28.   {
  29.   }
  30.  
  31.   public void onSpawn()
  32.   {
  33.   }
  34.  
  35.   public void onRemove()
  36.   {
  37.   }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement