package circusRefine.gui;
import circusRefine.core.ExternalManager;
import javax.swing.JInternalFrame;
/**
*
*/
public class TelaAnimacao extends JInternalFrame {
private PanelAnimacao pa;
/**
*/
public TelaAnimacao(ExternalManager gerInterface) {
super("Animation", true, false, true, true);
this.setSize(800,600);
this.setLocation(30,40);
try {
pa = new PanelAnimacao(gerInterface);
this.add(pa);
} catch (Exception e) {
e.printStackTrace();
}
}
public PanelAnimacao getPa() {
return pa;
}
}