tools/drawMapTest/main.cpp
author koda
Sun, 20 Jan 2013 23:05:31 +0100
changeset 8412 a2465e542e3d
parent 4425 2314bb0c433d
permissions -rw-r--r--
lupdate -pro project_files/hedgewars.pro -no-obsolete yes, I think the lupdate commits should be separate and should contain the -no-obsole flag

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

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