aboutsummaryrefslogtreecommitdiffstats
path: root/editor/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/main.cpp')
-rw-r--r--editor/main.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/editor/main.cpp b/editor/main.cpp
deleted file mode 100644
index bc80117b..00000000
--- a/editor/main.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-/* ----------------------------------------------------------------------------
- * /home/yannherklotz/Github/YAGE/editor/main.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#include "editorwindow.h"
-#include <QApplication>
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
- EditorWindow w;
- w.show();
-
- return a.exec();
-}