tools/templates/main.cpp
author smxx
Tue, 06 Apr 2010 10:51:09 +0000
changeset 3310 e6e9b811d32f
parent 359 59fbfc65fbda
permissions -rw-r--r--
Engine: * Teams leaving a net game will now teleport out of the map instead of commiting suicide

#include <QApplication>

#include "mainform.h"

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