public void setxy(int x, int y) { if (siguiente != null) { siguiente.setxy(this.x, this.y); } this.x = x; this.y = y; }
public void movimiento() { cabeza.setxy(cabeza.verX() + xdir, cabeza.verY() + ydir); }