tools/drawMapTest/main.cpp
author sheepluva
Tue, 21 Jan 2014 15:56:52 +0100
changeset 10035 ec523f66d0ff
parent 4425 2314bb0c433d
permissions -rw-r--r--
luaAPI: * add paramater count checks to gameflag functions * add GetGameFlag(gameflag) for checking a gameflag's current state

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

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