tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Mon, 18 Apr 2016 17:18:36 +0200
changeset 11667 7652eeb0fc7f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Clean up strings, hats, flags and graves in Portal mission Mostly fixes poor grammar and spelling

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

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