Пример #1
0
        public Form1()
        {
            InitializeComponent();



            cabeza = new Cola(50, 28);
            comida = new comida();
            g      = pantalla.CreateGraphics();
        }
Пример #2
0
 public void meter()
 {
     if (siguiente == null)
     {
         siguiente = new Cola(this.x, this.y);
     }
     else
     {
         siguiente.meter();
     }
 }
Пример #3
0
        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***");
        }
Пример #4
0
 public Cola(int x, int y)
 {
     this.x    = x;
     this.y    = y;
     siguiente = null;
 }