public bool HandleEnemyClash(GameObject player)
 {
     bool clash = false;
     foreach(Enemy enemy in enemies)
     {
         if(enemy.GetBounds().Intersects(player.GetBounds()))
         {
             player.Hit(1);
             clash = true;
         }
     }
     return (clash);
 }