]> de.git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/ObjToMap/objtomap/Main.java
initial checkin from nexuiz svn r8756
[xonotic/xonotic.git] / misc / tools / ObjToMap / objtomap / Main.java
1 /*
2  * Main.java
3  *
4  * Created on 16. Januar 2007, 15:24
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */
9
10 package objtomap;
11
12 import java.io.IOException;
13 import java.util.Vector;
14 import javax.swing.UIManager;
15
16 /**
17  *
18  * @author user
19  */
20 public class Main {
21     
22     
23     public static void main(String[] args) throws IOException {
24         
25         try {
26             UIManager.setLookAndFeel(
27                     UIManager.getSystemLookAndFeelClassName());
28         } catch (Exception e) { }
29         
30         Configuration config = new Configuration();
31         
32         JFrameMain main = new JFrameMain(config);
33         main.setVisible(true);
34         
35     }
36 }