tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 31 Jul 2018 22:26:53 +0200
changeset 13580 dc4ce9f486b0
parent 4425 2314bb0c433d
permissions -rw-r--r--
Refactor colors and caption type 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();
}