tools/drawMapTest/main.cpp
author sheepluva
Mon, 20 Oct 2014 19:50:46 +0200
changeset 10439 7de934f2247c
parent 4425 2314bb0c433d
permissions -rw-r--r--
allow toggling ammo menu while NoTeamOrHH, as suggested by unC0Rr

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

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