tools/drawMapTest/main.cpp
author sheepluva
Tue, 01 May 2012 11:39:11 +0200
changeset 6970 59f33a6a4814
parent 4425 2314bb0c433d
permissions -rw-r--r--
display haxx0red teams colors correctly. also got rid of some casts and std:: iteration stuff

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

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