void Awake()
 {
     winOpts = new WinningOptions();
     resetButton.SetActive(false);
     SetGlobalControllerReferencesOnSections();
     gameOverPanel.SetActive(false);
     gameOverText.text = "";
     SetPlayerColorsActive();
 }
 public void SetGlobalControllerRef(GlobalController global, WinningOptions opts)
 {
     globalController = global;
     winOpts          = opts;
 }