tools/templates/main.cpp
author nemo
Tue, 06 Apr 2010 21:00:55 +0000
changeset 3314 bab4a078263f
parent 359 59fbfc65fbda
permissions -rw-r--r--
restore sndIncoming for the other 2 air attacks

#include <QApplication>

#include "mainform.h"

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