tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 16 Feb 2018 19:54:21 +0100
changeset 13021 af35e22fb533
parent 4425 2314bb0c433d
permissions -rw-r--r--
Restore 5 hats to their previous full animated form They have been oversimplified by accident

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

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