blob: 7b99435c4dc1049649716ec3117aa25ef82d87cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
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 <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();
}
|