/* editor.cc This file is part of the Project::OSiRiON world editor and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include #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(); }