void SectionOver(bool gameIsADraw)
    {
        SetBoardInteractable(false);

        if (gameIsADraw)
        {
            gameOverText.text = "-";
        }
        else
        {
            gameOverText.text = globalController.GetPlayerSide();
        }

        gameOverPanel.SetActive(true);
        globalController.CheckForWin(gamePosition);
    }