void OnCollisionEnter2D(Collision2D other)
 {
     Building.Building building = other.gameObject.GetComponent <Building.Building>();
     if (building != null)
     {
         HealthSystem healthSystem = building.GetComponent <HealthSystem>();
         healthSystem.Damage(10);
         Destroy(gameObject);
     }
 }