Example #1
0
        //Choices being made
        private void choices1()
        {
            //Switch statment to makes choices
            switch (choice_Box.SelectedIndex)
            {
            // To Be honest I totally for got how different C# is when it came down to certain thing like switch statements and other things.
            case 0:
                // The first choice
                choice_Made_0();
                Restart_Game.Show();
                break;

            //Standing like a dumbass while zombies are coming choice.
            case 1:
                choice_made_1();
                Restart_Game.Show();
                break;

            // The die choice
            case 2:
                choice_made_2();
                Restart_Game.Show();
                break;
            }
        }
Example #2
0
 public Form5()
 {
     InitializeComponent();
     Restart_Game.Hide();
 }