tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Feb 2018 09:26:24 +0100
changeset 12929 48b9f15859b0
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix failure to read game scheme (.hwg) files

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

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