Mercurial > minori
view src/main.cc @ 167:31735c8592bc
dep/animia: make x11 window walking actually work
this is HORRIBLY slow, and I'm not *entirely* sure why...
| author | paper@DavesDouble.local | 
|---|---|
| date | Sun, 19 Nov 2023 05:32:06 -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(); }
