tools/drawMapTest/main.cpp
author Xeli
Fri, 23 Mar 2012 14:14:43 +0100
changeset 6806 cdfb6c7099e5
parent 4425 2314bb0c433d
permissions -rw-r--r--
first part of the utilitywidget (grenade timer/swap hogs) code

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

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