Example #1
0
        void Reset()
        {
            _rememberedRace         = Models.Matchup.Races.Random;
            pnlSelectRace.Visible   = true;
            pnlOpponentRace.Visible = false;
            pnlBuilds.Visible       = false;

            lblStatus.Text = "SELECT YOUR RACE";
        }
Example #2
0
        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();
        }
Example #3
0
        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;
            }
        }