tools/templates/main.cpp
author unc0rr
Mon, 09 Dec 2013 23:32:57 +0400
changeset 9770 5706b637bae2
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Restrict game config changes in special rooms - /unfix command

#include <QApplication>

#include "mainform.h"

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