Mercurial > minori
view src/main.cc @ 161:71752dcbb49f
junk: clunky merge commit
maybe I should enable rebase on this repo
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 17 Nov 2023 13:09:20 -0500 |
parents | 6fdf0632c003 |
children | 9b10175be389 |
line wrap: on
line source
#include "core/session.h" #include "gui/window.h" #include <QApplication> #include <QStyleFactory> #include <QTranslator> #include <QLocale> Session session; int main(int argc, char** argv) { QApplication app(argc, argv); session.config.Load(); MainWindow window; window.resize(941, 750); window.setWindowTitle("Minori"); window.show(); return app.exec(); }