mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-25 23:31:54 +02:00
22 lines
340 B
C++
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();
|
|
}
|