tools/drawMapTest/main.cpp
author unc0rr
Thu, 26 Jul 2012 11:56:43 +0400
changeset 7441 5d64f59f2ca5
parent 4425 2314bb0c433d
permissions -rw-r--r--
Better prediction of cluster, melon, and whip

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

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