tools/templates/main.cpp
author nemo
Wed, 30 Oct 2013 15:13:17 -0400
changeset 9657 2d8cae3c0855
parent 359 59fbfc65fbda
permissions -rw-r--r--
use gameticks instead of turn timer. untested. also replaced tabs with spaces

#include <QApplication>

#include "mainform.h"

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