package Capitulo_6.Dibujo;

import javax.swing.JFrame;

public class PruebaLienzo extends JFrame {
    public PruebaLienzo() {
        super("Prueba Lienzo");
        Lienzo miLienzo = new Lienzo();
        add(miLienzo);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
        setVisible(true);
        pack();
    }
    static public void main(String args[]) {
        new PruebaLienzo();
    }
}
