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