tools/templates/main.cpp
author nemo
Wed, 06 Mar 2013 11:13:18 -0500
changeset 8675 3fb25201d303
parent 359 59fbfc65fbda
permissions -rw-r--r--
This has bothered me for the longest time. Move texture so it doesn't overlap. I'd initially had a test for isPaused, but jumping texture bothered me.

#include <QApplication>

#include "mainform.h"

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