tools/drawMapTest/main.cpp
author unc0rr
Sat, 02 Feb 2013 00:33:27 +0400
changeset 8474 f6abe50095d2
parent 4425 2314bb0c433d
permissions -rw-r--r--
Start work on the checker. Not it could connect to the server and... crash it.

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

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