tools/drawMapTest/main.cpp
author sheepluva
Sat, 22 Jan 2011 19:40:57 +0100
changeset 4867 e604ee83e34f
parent 4425 2314bb0c433d
permissions -rw-r--r--
let players set timer of drill strike. yes. drill strike :3 the timer starts to tick on first impact

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

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