public Form1() { InitializeComponent(); g = canvas.CreateGraphics(); cabeza = new Cola(10, 10); comida = new Comida(); }
public void meter() { if (siguiente == null) { siguiente = new Cola(this.x, this.y); } else { siguiente.meter(); } }
public void findeJuego() { xdir = 0; ydir = 0; puntaje = 0; puntos.Text = "0"; ejex = true; ejey = true; 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; }