1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-09-29 06:39:28 +03:00
openwrt-packages/Tile/src/main.cpp
2011-01-16 00:15:43 +03:00

22 lines
340 B
C++

#include <QtGui/QApplication>
#include "tile.h"
#if defined(Q_WS_QWS)
#include <QtGui/QWSServer>
#endif
bool isRunning = 0;
int Moves = 0;
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Tile w;
#if defined(Q_WS_QWS)
QWSServer::setCursorVisible(false);
#endif
w.show();
return a.exec();
}