tools/drawMapTest/main.cpp
author sheepluva
Sun, 04 Dec 2016 02:02:18 +0100
changeset 12102 51596d30a724
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix chat SDL surfaces being in wrong color format (didn't play well with copyToXY's new quick pixel copies)

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

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