tools/drawMapTest/main.cpp
author nemo
Sat, 11 May 2013 21:50:14 -0400
changeset 8978 e6ef8fe314bd
parent 4425 2314bb0c433d
permissions -rw-r--r--
suggestion of unc0rr's to fix issue w/ random maps in campaign. load sidecar packages in physfs for lua. should be useful also for lua that does custom layouts

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

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