tools/templates/main.cpp
author unc0rr
Sat, 10 Jan 2009 12:02:58 +0000
changeset 1628 4939254196d6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Don't send empty ammo scheme to server when changing ammo schemes in room (fixes 'bad state' server message)

#include <QApplication>

#include "mainform.h"

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