public Form1() { InitializeComponent(); cabeza = new Cola(10, 10); comida = new Comida(); g = canvas.CreateGraphics(); }
public void findejuego() { puntaje = 0; puntos.Text = "0"; ejex = true; ejey = true; cabeza = new Cola(10, 10); comida = new Comida(); //MessageBox.Show("Perdiste"); }
public void Meter() { if (siguiente == null) { siguiente = new Cola(this.x, this.y); } else { siguiente.Meter(); } }
public void FinDelJuego() { this.dirx = 0; this.diry = 0; this.ejex = true; this.ejey = true; this.puntos = 0; this.lblPuntos.Text = puntos.ToString(); cabeza = new Cola(10, 10); comida = new Comida(); MessageBox.Show("GAME OVER"); }
public void findeljuego() { puntaje = 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 Cola(int x, int y) { this.x = x; this.y = y; this.siguiente = null; }