tools/templates/main.cpp
author koda
Sun, 20 Jan 2013 23:05:31 +0100
changeset 8412 a2465e542e3d
parent 359 59fbfc65fbda
permissions -rw-r--r--
lupdate -pro project_files/hedgewars.pro -no-obsolete yes, I think the lupdate commits should be separate and should contain the -no-obsole flag

#include <QApplication>

#include "mainform.h"

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