void Reset() { _rememberedRace = Models.Matchup.Races.Random; pnlSelectRace.Visible = true; pnlOpponentRace.Visible = false; pnlBuilds.Visible = false; lblStatus.Text = "SELECT YOUR RACE"; }
void SelectOpponentRace(Models.Matchup.Races race) { _opponentRace = race; pnlSelectRace.Visible = false; pnlOpponentRace.Visible = false; pnlBuilds.Visible = !Configuration.Instance.SelectRandomBuild; lblStatus.Text = "SELECT BUILD ORDER"; PopulateBuilds(); }
void SelectRace(Models.Matchup.Races race) { _myRace = race; pnlSelectRace.Visible = false; pnlOpponentRace.Visible = true; lblStatus.Text = "SELECT OPPONENT RACE"; if (Configuration.Instance.RememberRace) { _rememberedRace = race; } }