tools/drawMapTest/main.cpp
author sheepluva
Sun, 14 May 2017 15:20:26 +0200
changeset 12414 d43ded9a0c34
parent 4425 2314bb0c433d
permissions -rw-r--r--
Remove IceGun from default Highlander weaponset

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

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