OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | #include <QtGui/QApplication> |
| 2 | #include "tile.h" |
| 3 | |
| 4 | |
| 5 | #if defined(Q_WS_QWS) |
| 6 | #include <QtGui/QWSServer> |
| 7 | #endif |
| 8 | |
| 9 | bool isRunning = 0; |
| 10 | int Moves = 0; |
| 11 | |
| 12 | int 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 |
