public void meter() { if (siguiente == null) { siguiente = new Cola(this.x, this.y); } else { siguiente.meter(); } }
private void bucle_Tick(object sender, EventArgs e) { dibujar(); movimiento(); choqueCuerpo(); choquePared(); if (cabeza.Interseccion(comida)) { comida.Colocar(); cabeza.meter(); puntaje++; puntos.Text = puntaje.ToString(); label_puntaje_maximo.Text = puntos.Text; } }