tools/templates/main.cpp
author unc0rr
Thu, 05 Dec 2013 00:51:27 +0400
changeset 9753 9579596cf471
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all. - Define default value for SCRIPT in room config - Allow server admins to join 'registered users only' room

#include <QApplication>

#include "mainform.h"

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