Advertisement
kasru

enemy

Mar 10th, 2013
1,482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler   ******
  3.  
  4. var health = 100;
  5.  
  6. function Update () {
  7. }
  8.  
  9.  
  10. function ApplyDamage(damage: int){
  11.     health -= damage;
  12.     Debug.Log(health);
  13.    
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement