tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Mar 2018 01:28:15 +0100
changeset 13158 2a53b598c1ae
parent 4425 2314bb0c433d
permissions -rw-r--r--
Reduce number of minigun bullets from 71 to 70 Not that it changes much ... :D

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

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