/* ---------------------------------------------------------------------------- * /home/yannherklotz/Github/YAGE/editor/main.cpp * * Copyright (c) 2017 Yann Herklotz Grave * MIT License, see LICENSE file for more details. * ---------------------------------------------------------------------------- */ #include "editorwindow.h" #include int main(int argc, char *argv[]) { QApplication a(argc, argv); EditorWindow w; w.show(); return a.exec(); }