public void dibujar(Graphics g) { if (siguiente != null) { siguiente.dibujar(g); } g.FillRectangle(new SolidBrush(Color.Blue), this.x, this.y, this.ancho, this.ancho); }
public void dibujar() { g.Clear(Color.White); cabeza.dibujar(g); comida.dibujar(g); }