tools/drawMapTest/main.cpp
author unc0rr
Sat, 01 Sep 2012 21:36:57 +0200
changeset 7644 ed7fecd0f5fd
parent 4425 2314bb0c433d
permissions -rw-r--r--
hide health bars of dead teams

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

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