1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-28 06:37:44 +00:00
novus/explorer/src/main.cpp
Joshua Goins 05dfd81581 Overhaul file explorer
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.
2023-04-09 15:32:09 -04:00

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();
}