private void LockAllButtons(BattleSelectScreenComponent screenComponent)
 {
     screenComponent.EnterBattleDMButton.SetInteractable(false);
     screenComponent.EnterBattleRedButton.SetInteractable(false);
     screenComponent.EnterBattleBlueButton.SetInteractable(false);
     screenComponent.EnterBattleAsSpectatorButton.SetInteractable(false);
 }
 private void HideAllButtons(BattleSelectScreenComponent screenComponent)
 {
     this.LockAllButtons(screenComponent);
     screenComponent.EnterBattleDMButton.SetActive(false);
     screenComponent.EnterBattleRedButton.SetActive(false);
     screenComponent.EnterBattleBlueButton.SetActive(false);
     screenComponent.EnterBattleAsSpectatorButton.SetActive(false);
 }