tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 14:08:43 +0100
changeset 12028 cfc2f087dccf
parent 4425 2314bb0c433d
permissions -rw-r--r--
HedgeEditor: Make landgun spawn in utility crates and sort list of ammo types to reflect the ammo menu ordering

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

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