tools/drawMapTest/main.cpp
author unc0rr
Sat, 24 Sep 2011 00:00:57 +0400
changeset 5996 2c72fe81dd37
parent 4425 2314bb0c433d
permissions -rw-r--r--
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure

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

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