tools/drawMapTest/main.cpp
author unc0rr
Sat, 27 Oct 2012 01:16:35 +0400
changeset 7835 a84936d1618a
parent 4425 2314bb0c433d
permissions -rw-r--r--
Clear hedgehog's gear Power value when switching. Should fix issue #446 (not tested, but looks obvious).

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

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