tools/drawMapTest/main.cpp
author unc0rr
Sun, 06 Mar 2011 21:55:44 +0300
changeset 4990 4b5d62ac01f7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Write latest protocol version too

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

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