示例#1
0
 private void ScoreScript_GameLose()
 {
     _currentRound = StartRound;
     UpdateLevelName?.Invoke(_roundNames[_currentRound]);
 }
示例#2
0
 private void ScoreScript_GameWin()
 {
     _currentRound++;
     UpdateLevelName?.Invoke(_roundNames[_currentRound]);
 }