tools/drawMapTest/main.cpp
author koda
Sun, 19 Jun 2011 00:49:13 +0200
changeset 5256 e3fada9358b0
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix water bubbles like sheepluva wanted (also code formatting)

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

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