tools/drawMapTest/main.cpp
author unc0rr
Mon, 18 Nov 2013 00:44:30 +0400
changeset 9702 27006953d901
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Column for script in rooms list - Get rid of scheme and weapons filters

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

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