async startCountdown()

in src/app/pages/game/game.component.ts [134:142]


  async startCountdown(): Promise<void> {
    this.reset();
    this.gameStatus.set(GameStatuses.GetReady);
    this.countdown.set(DEFAULT_COUNTDOWN);
    this.audioHandler.playAudio('countdown');
    setTimeout(() => {
      this.incrementCountdown();
    }, 1000);
  }