Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/editor.cc')
-rw-r--r--src/editor.cc18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/editor.cc b/src/editor.cc
index 96fe0ea..28f75a7 100644
--- a/src/editor.cc
+++ b/src/editor.cc
@@ -1,4 +1,20 @@
+/*
+ editor.cc
+ This file is part of the Project::OSiRiON zone editor
+ and is distributed under the terms and conditions of
+ the GNU General Public License version 2
+*/
-int main(int arc, char ** argv)
+#include <QApplication>
+#include "mainwindow.h"
+
+int main(int argc, char ** argv)
{
+
+ QApplication editor_application(argc, argv);
+ editor::MainWindow editor_mainwindow;
+
+ editor_mainwindow.show();
+ return editor_application.exec();
+
}