1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 21:07:46 +00:00
novus/exdviewer/src/main.cpp

15 lines
234 B
C++
Raw Normal View History

2022-03-16 00:31:24 -04:00
#include <QApplication>
2022-03-15 15:34:38 -04:00
2022-03-16 00:31:24 -04:00
#include "mainwindow.h"
2022-03-15 15:34:38 -04:00
#include "gamedata.h"
int main(int argc, char* argv[]) {
2022-03-16 00:31:24 -04:00
QApplication app(argc, argv);
2022-03-15 15:34:38 -04:00
GameData data(argv[1]);
2022-03-16 00:31:24 -04:00
MainWindow w(data);
w.show();
2022-03-15 15:34:38 -04:00
2022-03-16 00:31:24 -04:00
return app.exec();
2022-03-15 15:34:38 -04:00
}