tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Tue, 09 Feb 2016 15:10:01 -0500
changeset 11540 1ae92bbb5a6d
parent 11015 7a905f0070ce
permissions -rw-r--r--
crosshair on hog won't cause a direct hit anymore

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

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

    return a.exec();
}