tools/templates/main.cpp
author nemo
Sat, 30 Oct 2010 23:50:49 -0400
changeset 4044 de7170e51cc6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Check for collision with surfaces above when levitating hog, use more typical drawing syntax for the resurrector wep, restore typical indentation

#include <QApplication>

#include "mainform.h"

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