public Test9() throws Exception {
this.setSize(800, 700);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
MapDataLoader loader = new MapDataLoader(new File("map0.mul"),
new File("tiledata.mul"), new File("texidx.mul"), new File(
"texmaps.mul"), this.getGraphicsConfiguration());
MapViewPanel panel = new MapViewPanel(loader);
this.getContentPane().setLayout(new BorderLayout());
this.getContentPane().add(panel, BorderLayout.CENTER);