tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 18 May 2017 00:57:15 +0200
changeset 12429 90e43d1bcd5b
parent 4425 2314bb0c433d
permissions -rw-r--r--
HedgeEditor: Add 2 names to Mushroom Kingdom team identidy to get a full set of 8 hogs

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

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