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

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}