tools/drawMapTest/main.cpp
author nemo
Thu, 22 Feb 2018 20:10:22 -0500
changeset 13058 004f4f7dc9d4
parent 4425 2314bb0c433d
permissions -rw-r--r--
Enemy hogs should at least try to get to you in low gravity

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

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