tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 13 Apr 2017 17:42:57 +0200
changeset 12246 4c717a69a7a6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Use smaller play sound icon in team editor

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

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