tools/drawMapTest/main.cpp
author nemo
Tue, 07 Dec 2010 23:34:01 -0500
changeset 4483 ad1524a177bd
parent 4425 2314bb0c433d
permissions -rw-r--r--
band/bor/bnot to support Lua 5.1 lack of binary ops

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

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