tools/drawMapTest/main.cpp
author nemo
Mon, 08 Aug 2011 23:57:04 -0400
changeset 5528 c539e5c81870
parent 4425 2314bb0c433d
permissions -rw-r--r--
slight visual tweak. birdy's wings beat faster if he's just about tired out

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

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