Example #1
0
 public void HidePauseMenu()
 {
     gui.remove(BackgroundLabel);
     gui.remove(ResumeLabel);
     gui.remove(EndTurnLabel);
     gui.remove(QuitLabel);
 }
Example #2
0
        private void UnloadGuiElements()
        {
            foreach (var bg in backgrounds)
            {
                gui.remove(bg);
            }

            foreach (var team in teamStates)
            {
                gui.remove(team.GuiLabel);
            }
        }