tools/drawMapTest/main.cpp
author nemo
Wed, 29 May 2013 07:45:00 -0400
changeset 9077 e8d9d94c122f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Waddaya think. Add it for iced up water and mines/cases/explosives

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

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