tools/drawMapTest/main.cpp
author unc0rr
Tue, 14 Dec 2010 20:01:27 +0300
changeset 4524 65c294aedaea
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't reset teams when returning from draw map page

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

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