tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Oct 2018 23:46:31 +0200
changeset 13979 4d0c80f7aa32
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix freezer ray extending with low fuel usage when firing straight up/down while holding up/down key

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

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