public Form1() { InitializeComponent(); cabeza = new cola(10, 10); comida = new Comida(); g = canvas.CreateGraphics(); }
public void meter() { if (siguiente == null) { siguiente = new cola(this.x, this.y); } else { siguiente.meter(); } }
public void fin_del_juego() { punto = 0; puntos.Text = "0"; ejex = true; ejey = true; xdir = 0; ydir = 0; cabeza = new cola(10, 10); comida = new Comida(); MessageBox.Show("Game Over"); }
public void findejuego() { puntaje = 0; puntos.Text = "0"; ejex = true; ejey = true; xdir = 0; ydir = 0; cabeza = new cola(10, 10); comida = new Comida(); MessageBox.Show("Haz Perdido, Intentalo Más Tarde"); }
public void Findejuego() { puntaje = 0; Puntos.Text = "0"; ejex = true; ejey = true; xdir = 0; ydir = 0; bucle.Interval = 100; cabeza = new cola(10, 10); comida = new Comida(); MessageBox.Show("Perdiste"); }
public cola(int x, int y) { this.x = x; this.y = y; siguiente = null; }