mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-28 06:37:44 +00:00
File Explorer is still in functionality limbo, but this at least removes the libxiv dependency and will make it easier to use the new GUI parts system in the future.
19 lines
No EOL
319 B
C++
19 lines
No EOL
319 B
C++
#include <QApplication>
|
|
|
|
#include <physis.hpp>
|
|
#include <QStyle>
|
|
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
QApplication app(argc, argv);
|
|
|
|
physis_initialize_logging();
|
|
|
|
app.setStyle("Windows");
|
|
|
|
MainWindow w(physis_gamedata_initialize(argv[1]));
|
|
w.show();
|
|
|
|
return app.exec();
|
|
} |