package Dibujo2;

import javax.swing.JFrame;

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

}
