tools/templates/main.cpp
author koda
Sat, 17 Jul 2010 16:35:14 +0200
changeset 3649 bc35f8fee587
parent 359 59fbfc65fbda
permissions -rw-r--r--
aim now starts slow and then moves faster

#include <QApplication>

#include "mainform.h"

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