spenk

player

Jul 8th, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. import org.bukkit.entity.Player;
  2.  
  3.  
  4. public class SmashPlayer {
  5.    
  6.     private int health = 100;
  7.    
  8.     public SmashPlayer (Player player) {
  9.        
  10.     }
  11.    
  12.     public int getHealth() {
  13.         return health;
  14.     }
  15.    
  16.     public void setHealth(int health) {
  17.         this.health = health;
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment