private void buttonStraya_Click(object sender, EventArgs e)
 {
     listBoxAnimalOutput.Items.Clear();
     canvas.Clear(Color.SandyBrown);
     //creates and simulates straya
     Continent straya = new Australia(listBoxAnimalOutput, randGen, 4, canvas);
     straya.runSimulation();
 }
Exemple #2
0
        private void buttonStraya_Click(object sender, EventArgs e)
        {
            listBoxAnimalOutput.Items.Clear();
            canvas.Clear(Color.SandyBrown);
            //creates and simulates straya
            Continent straya = new Australia(listBoxAnimalOutput, randGen, 4, canvas);

            straya.runSimulation();
        }