started to use fixed scene size and upped version number to 0.1.0
[ghostsoverboard] / main.cpp
1 #include <QtGui/QApplication>
2 #include "mainwindow.h"
3
4 int main(int argc, char *argv[])
5 {
6     QApplication a(argc, argv);
7     a.setApplicationName("Ghosts Overboard");
8     a.setApplicationVersion("0.1.0");
9     MainWindow w;
10 #if defined(Q_WS_S60)
11     w.showMaximized();
12 #else
13     w.show();
14 #endif
15
16     return a.exec();
17 }