tools/drawMapTest/main.cpp
author nemo
Wed, 06 Mar 2013 19:50:25 -0500
changeset 8681 d0fc1dca739c
parent 4425 2314bb0c433d
permissions -rw-r--r--
yeah. this was a bad idea. the minor difference in thaw speed vs last hog of team never unthawing.

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

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