tools/templates/main.cpp
author unc0rr
Sun, 10 Aug 2008 20:18:40 +0000
changeset 1191 5539aa59f703
parent 359 59fbfc65fbda
permissions -rw-r--r--
With this change, SDL will probably report more screen resolutions on dual-monitor configurations

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}