tools/drawMapTest/main.cpp
author unc0rr
Tue, 21 May 2013 21:40:22 +0400
changeset 9029 2d5e6ed2cba7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix issue with last hog's part of team health bar

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

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