tools/drawMapTest/main.cpp
author sheepluva
Sun, 01 Mar 2015 20:14:23 +0100
changeset 10844 953d85b7d529
parent 4425 2314bb0c433d
permissions -rw-r--r--
holding ctrl will now make cursor skip words/etc in a fashion similar to Qt

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

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