tools/templates/main.cpp
author nemo
Sun, 03 May 2009 17:35:10 +0000
changeset 2023 41d3afaa20c7
parent 359 59fbfc65fbda
permissions -rw-r--r--
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump

#include <QApplication>

#include "mainform.h"

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