tools/drawMapTest/main.cpp
author unc0rr
Sat, 23 Feb 2013 23:23:02 +0400
changeset 8569 62f4e903fddc
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix issue #537 (empty team created on startup)

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

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