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