tools/templates/main.cpp
author unc0rr
Sat, 16 Aug 2008 11:22:34 +0000
changeset 1221 51e3f3cfdca5
parent 359 59fbfc65fbda
permissions -rw-r--r--
Start seduction weapon implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
359
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     1
#include <QApplication>
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     2
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     3
#include "mainform.h"
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     4
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     5
int main(int argc, char *argv[])
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     6
{
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     7
    QApplication app(argc, argv);
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     8
    MyWindow *mainWin = new MyWindow;
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     9
    mainWin->show();
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    10
    return app.exec();
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    11
}