You have to solve current level before advance
[vexed] / iconset.h
1 #ifndef ICONSET_H
2 #define ICONSET_H
3
4 #include <QtCore>
5 #include <QtGui>
6 namespace IS
7 {
8         const int ICONS=8;
9 }
10 class IconSet : public QObject
11 {
12     Q_OBJECT
13 private:
14         QPixmap icons[IS::ICONS];
15         QPixmap wall;
16 public:
17     explicit IconSet(QObject *parent = 0);
18     QPixmap icon(int i) {return icons[i];}
19     QPixmap wallIcon() {return wall;}
20 signals:
21         void iconSetChanged();
22 };
23
24 #endif // ICONSET_H