public Form1() { InitializeComponent(); cabeza = new Cola(50, 28); comida = new comida(); g = pantalla.CreateGraphics(); }
public void meter() { if (siguiente == null) { siguiente = new Cola(this.x, this.y); } else { siguiente.meter(); } }
public void GameOver() { puntaje = 0; score.Text = "0"; ejex = true; ejey = true; xdir = 0; ydir = 0; CooX.Text = "0"; CooY.Text = "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; siguiente = null; }