tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 12 Apr 2018 14:52:47 +0200
changeset 13319 78f097923bcb
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't let hedgehogs moan if they take 0 Sudden Death damage

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

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