- some new mission icons
- add variable portal limiter (and effects) to TechRacer
- allow variable (not just infinite) ufo fuel
- possibly break stuff some
- more whitespace?
#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);
};