]> git.sesse.net Git - ultimatescore/blob - client/main.cpp
edd02fc403514475aab87d792e036e592c184be3
[ultimatescore] / client / main.cpp
1 #include "acmp_client.h"
2 #include "mainwindow.h"
3 #include <QApplication>
4
5 int main(int argc, char *argv[])
6 {
7         QApplication a(argc, argv);
8         MainWindow w;
9         w.show();
10
11         return a.exec();
12 }