tools/templates/main.cpp
author nemo
Wed, 26 Jun 2013 21:40:10 -0400
changeset 9261 6e4feb4191a0
parent 359 59fbfc65fbda
permissions -rw-r--r--
reduce shove frequency (perf). reduce dX so that less time is spent sliding.

#include <QApplication>

#include "mainform.h"

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