tools/drawMapTest/main.cpp
author unc0rr
Mon, 20 Dec 2010 21:45:10 +0300
changeset 4586 4ba4f021070f
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Allow user to use undo, to clear, save and load drawn maps - Fix a couple of bugs related to those operations

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

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