tools/drawMapTest/main.cpp
author sheepluva
Sun, 02 Jan 2011 13:54:28 +0100
changeset 4807 180dbfb13903
parent 4425 2314bb0c433d
permissions -rw-r--r--
display caption for ammotype amNothing when switched to so that players know what just happened

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

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