tools/drawMapTest/main.cpp
author unc0rr
Sun, 18 Aug 2013 17:29:17 +0400
changeset 9401 2af7bea32e5e
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Some fixes to official server build - Encode stored message, fixes bug of r3f4c3fc146c2

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

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