Ejemplo n.º 1
0
        protected void CrearPista()
        {
            MPista ayuda = new MPista(label2.Text, (int)numericUpDown1.Value, (int)numericUpDown2.Value);

            mpis[3 * nivel - numInt] = ayuda;
            textBox1.Text           += ayuda.Cadena + "  " + ayuda.Tocados + "T " + ayuda.Situados + "S." + "\r\n";
            --numInt;
        }
Ejemplo n.º 2
0
        protected void CrearMPistas()
        {
            int indice;

            mpis = new MPista[FNivel.MAX_NIV * 3];
            for (indice = 0; indice < FNivel.MAX_NIV * 3; ++indice)
            {
                mpis[indice] = new MPista();
            }
        }