trackDamage()

Found in:

private void trackDamage(int d){
    if(hits == 0){
      PopOffEnd();
      hits = damage;
    }else{
      hits -= d;
    }
  }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *