private void checkEnemyLives()
 {
     if (enemyHealth <= 0)
     {
         spawnManager.startSpawn();
         Destroy(gameObject);
     }
 }