Guest User

Untitled

a guest
Apr 27th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.  
  2. public class Alien
  3.  
  4. {
  5.     private int LifePoints;
  6.    
  7.    
  8.    
  9.     public Alien(int i)
  10.     {
  11.         this.LifePoints = i;
  12.     }
  13.  
  14.    
  15.  
  16.    
  17.    
  18.  
  19.     public int getLifePoints()
  20.     {
  21.        
  22.         return LifePoints;
  23.     }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.     public void takeHit(int weaponStrength)
  30.     {
  31.        
  32.        
  33.     }
  34.  
  35. }
Add Comment
Please, Sign In to add comment