tools/drawMapTest/main.cpp
author unc0rr
Thu, 31 Dec 2015 16:26:21 +0300
changeset 11475 1d478892cf1c
parent 4425 2314bb0c433d
permissions -rw-r--r--
AI is pretty good at using Bee weapon

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

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