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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}