Root/Tile/src/main.cpp

1#include <QtGui/QApplication>
2#include "tile.h"
3
4
5#if defined(Q_WS_QWS)
6#include <QtGui/QWSServer>
7#endif
8
9bool isRunning = 0;
10int Moves = 0;
11
12int main(int argc, char *argv[])
13{
14    QApplication a(argc, argv);
15    Tile w;
16    #if defined(Q_WS_QWS)
17        QWSServer::setCursorVisible(false);
18    #endif
19    w.show();
20    return a.exec();
21}
22

Archive Download this file



interactive