mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-20 11:47:45 +00:00
13 lines
No EOL
236 B
C++
13 lines
No EOL
236 B
C++
#include <QApplication>
|
|
#include <physis.hpp>
|
|
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
QApplication app(argc, argv);
|
|
|
|
MainWindow w(physis_gamedata_initialize(argv[1]));
|
|
w.show();
|
|
|
|
return app.exec();
|
|
} |