/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package Capitulo_6.Dibujo;

import java.awt.Color;
import java.awt.Graphics;

public interface Figura {
    public void set(int x0, int y0, int x1, int y1, Color c);
    void dibuja(Graphics g);
}
