public void Damage(int damage) { health -= damage; if (health <= 0) { manager.Remove(this); Destroy(gameObject); } }