tools/templates/main.cpp
author smxx
Sat, 01 May 2010 20:02:20 +0000
changeset 3390 1d4926d10a9e
parent 359 59fbfc65fbda
permissions -rw-r--r--
Engine: * Changed Tint() to use the 4 byte version all the time instead of the longword pointer due to pixel format issues * Added a "laser dot" to laser sight

#include <QApplication>

#include "mainform.h"

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