void Update()
 {
     if (gameStarted)
     {
         SpawnSpikes();
         if (!rocketController.IsAlive())
         {
             StopSpikes();
             ActivateRestart();
         }
         UpdateScore();
     }
     else
     {
         CheckForStart();
     }
     CheckForExit();
 }