Beispiel #1
0
 public Cola(int x, int y)
 {
     //imagen = Image.FromFile("C:\\imagen\\snake.png");
     this.x    = x;
     this.y    = y;
     siguiente = null;
 }
Beispiel #2
0
 public void meter()
 {
     if (siguiente == null)
     {
         siguiente = new Cola(this.x, this.y);
     }
     else
     {
         siguiente.meter();
     }
 }