public void UpdateLevel() { textComponent.text = "Level " + (gameManager.GetLevel() + 1) + " completed \n\nScore: " + gameManager.GetCurrentScore() + " \n\n Enemies defeated: " + gameManager.GetEnemiesDefeated(); }
public void UpdateScore() { textComponent.text = "Score: " + gameManager.GetCurrentScore(); }