tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 28 Apr 2017 02:18:21 +0200
changeset 12371 2b1dd699b371
parent 359 59fbfc65fbda
permissions -rw-r--r--
Lua: Fix SwitchHog breaking the ammo menu of the new hog

#include <QApplication>

#include "mainform.h"

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