tools/drawMapTest/main.cpp
author unc0rr
Sat, 04 Dec 2010 22:33:14 +0300
changeset 4457 ffb766e85150
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Change painted map file format - Stub for uLandPainted.pas

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

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