tools/drawMapTest/main.cpp
author sheepluva
Tue, 16 Feb 2016 04:25:00 +0100
changeset 11551 aefc770feb65
parent 4425 2314bb0c433d
permissions -rw-r--r--
apply to deagle and sniper only

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

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