tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 17 Feb 2018 12:52:47 +0100
changeset 13028 8b6d8418d580
parent 4425 2314bb0c433d
permissions -rw-r--r--
Play a few more taunts in Space Invasion

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

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