tools/templates/main.cpp
author koda
Wed, 25 Aug 2010 00:17:51 +0200
changeset 3765 ebfe7c9b3085
parent 359 59fbfc65fbda
permissions -rw-r--r--
set flake to non critical, no touches until game is starding, moved some variables to be initialized in the right place

#include <QApplication>

#include "mainform.h"

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