tools/drawMapTest/main.cpp
author koda
Tue, 23 Oct 2012 12:12:28 +0100
changeset 7799 a88a02c19a5b
parent 4425 2314bb0c433d
permissions -rw-r--r--
tweaks to win build script, hedgewars.pro now supports win32 target

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

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