tools/drawMapTest/main.cpp
author nemo
Sat, 11 May 2013 23:36:39 -0400
changeset 8980 37f4cdd9cd2c
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't draw a border if there's already a bottom border, avoid placing objects over gaps in the floor

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

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