tools/drawMapTest/main.cpp
author koda
Tue, 25 Dec 2012 01:13:07 +0100
changeset 8327 a6f3452f5f94
parent 4425 2314bb0c433d
permissions -rw-r--r--
convert Game() library call to argc,argv format so that we can use the new parsing functions

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

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