Expose the gotten achievements of Bamboo Thicked and Dangerous Ducklings in the stats screen
Also fix Basic rope training captions.
The string freeze is maintained. Only existing strings are used.
#include <QLabel>
#include <QRect>
#include <QList>
#include <QMouseEvent>
class PixLabel : public QLabel
{
Q_OBJECT
public:
PixLabel();
QList<QRect> rects;
public slots:
void AddRect();
private:
void paintEvent(QPaintEvent * event);
void mousePressEvent(QMouseEvent * e);
};