mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-25 13:17:46 +00:00
15 lines
234 B
C++
15 lines
234 B
C++
|
#include <QApplication>
|
||
|
|
||
|
#include "mainwindow.h"
|
||
|
#include "gamedata.h"
|
||
|
|
||
|
int main(int argc, char* argv[]) {
|
||
|
QApplication app(argc, argv);
|
||
|
|
||
|
GameData data(argv[1]);
|
||
|
|
||
|
MainWindow w(data);
|
||
|
w.show();
|
||
|
|
||
|
return app.exec();
|
||
|
}
|