tools/templates/main.cpp
author Xeli
Thu, 16 Feb 2012 21:32:19 +0100
changeset 6692 029c27660dd2
parent 359 59fbfc65fbda
permissions -rw-r--r--
move the aim buttons to be above the jump button

#include <QApplication>

#include "mainform.h"

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