private resetVariables()

in src/app/pages/game/game.component.ts [211:222]


  private resetVariables() {
    this.freezeVideo.set(false);
    this.countdown.set(DEFAULT_COUNTDOWN);
    this.gameStatus.set(GameStatuses.LetsPlay);
    this.playerSign.set(null);
    this.computerSign.set(null);
    this.nextComputerSign.set(null);

    if (this.computerStrategy instanceof AnticipateStrategy) {
      this.computerStrategy.reset();
    }
  }