tools/templates/main.cpp
author sheepluva
Tue, 18 Nov 2014 02:57:47 +0100
changeset 10514 a1423588a4e4
parent 359 59fbfc65fbda
permissions -rw-r--r--
chat: fix some glitches, add /togglechat command for changing chat visibility

#include <QApplication>

#include "mainform.h"

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