tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 01 May 2016 01:04:45 +0200
changeset 11918 9da78300c5d0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix sniper rifle making timer gray all the time

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

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

    return a.exec();
}