tools/drawMapTest/main.cpp
author zero579911
Thu, 29 Nov 2012 04:57:35 +0100
changeset 8136 c2196b1dccb4
parent 4425 2314bb0c433d
permissions -rw-r--r--
GCI: use player's name for the default team task: http://www.google-melange.com/gci/task/view/google/gci2012/8007227 note: these bugs were NOT introduced by this: - double confirmation on team removal - team addition fails

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

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