Exemple #1
0
    private void FinishGameTimer()
    {
        _timerText.text = "00:00";

        while (_activeBalls.Count > 0)
        {
            ReturnToPool(_activeBalls[0]);
        }

        GD.GAME_PAUSED = true;

        if (_renderData.GameFinished != null)
        {
            _renderData.GameFinished(_currentPoints);
        }
    }