tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Thu, 31 Dec 2015 16:26:21 +0300
changeset 11480 1d478892cf1c
parent 11015 7a905f0070ce
permissions -rw-r--r--
AI is pretty good at using Bee weapon

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

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

    return a.exec();
}