tools/templates/main.cpp
author unc0rr
Sun, 13 Apr 2008 12:29:26 +0000
changeset 839 1493f697d1bb
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix broken logic for the new parachute feature

#include <QApplication>

#include "mainform.h"

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