public Form1() { InitializeComponent(); graphics = ptb_escenario.CreateGraphics(); cabeza = new Cola(10, 10); micomida = new Comida(ptb_escenario.Width, ptb_escenario.Height); }
public void findejuego() { xdir = 0; ydir = 0; ejex = true; ejey = true; cabeza = new Cola(10, 10); micomida = new Comida(ptb_escenario.Width, ptb_escenario.Height); MessageBox.Show("Fin del juego"); }
public void crecer() { if (siguiente == null) { siguiente = new Cola(x, y); } else { siguiente.crecer(); } }
public Cola(int x, int y) { this.x = x; this.y = y; siguiente = null; }