Mercurial > minori
annotate src/main.cc @ 147:6fdf0632c003
track: use a bit of a more sane way to manage recognition
it also works with the new animia API
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 14 Nov 2023 13:19:40 -0500 |
parents | 39521c47c7a3 |
children | 9b10175be389 |
rev | line source |
---|---|
10 | 1 #include "core/session.h" |
2 #include "gui/window.h" | |
3 #include <QApplication> | |
46 | 4 #include <QStyleFactory> |
108 | 5 #include <QTranslator> |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
81
diff
changeset
|
6 #include <QLocale> |
10 | 7 |
8 Session session; | |
9 | |
10 int main(int argc, char** argv) { | |
11 QApplication app(argc, argv); | |
12 | |
13 session.config.Load(); | |
14 | |
15 MainWindow window; | |
16 | |
17 window.resize(941, 750); | |
11 | 18 window.setWindowTitle("Minori"); |
10 | 19 window.show(); |
20 | |
21 return app.exec(); | |
46 | 22 } |