コード例 #1
0
ファイル: Editor.java プロジェクト: alu0100777758/ludum
 public static void main(String[] args) {
   // checkFileSystem();
   EditorFrame frame = new EditorFrame();
   frame.setTitle("Red VS Blue Editor");
   frame.setLocationRelativeTo(null); // Center the frame
   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   frame.setVisible(true);
   frame.setFocusable(true);
 }