tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 27 Sep 2017 23:41:56 +0200
changeset 12565 392f90c79b78
parent 4425 2314bb0c433d
permissions -rw-r--r--
ASA, death02: Use GetAmmoName for the enemy hog names

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

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