tools/drawMapTest/main.cpp
author unc0rr
Mon, 10 Jan 2011 15:53:49 +0300
changeset 4830 c5ddc3e6c8a4
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't waste CPU cycles trying to find a piece of land when there's no free land left

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

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