tools/templates/main.cpp
author unc0rr
Mon, 11 May 2009 18:57:39 +0000
changeset 2043 1f2b91b5e7ef
parent 359 59fbfc65fbda
permissions -rw-r--r--
Don't accept 'team gone' command right after 'next turn' cmd

#include <QApplication>

#include "mainform.h"

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