tools/drawMapTest/main.cpp
author sheepluva
Tue, 18 Oct 2011 14:28:50 +0200
changeset 6147 b4d7d8d62feb
parent 4425 2314bb0c433d
permissions -rw-r--r--
feature-pimpin'-up the chat input line in frontend: ESC key will clear input TAB key will expand names and commands

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

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