tools/drawMapTest/main.cpp
author nemo
Sun, 04 Sep 2011 16:35:27 -0400
changeset 5776 9c097391d8f9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Break a bunch of teams by reorganising hats so that similar ones are found together. Hat groupings by Star

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}