Randomized teams now can have any random hats (not just from types.ini)
The predefined hat sets still work, however. There are now 3 types of hat selections:
1) Use hats from types.ini
2) Randomly select one hat for all hedgehogs
3) Randomly select hat for each hedgehog (rare)
#ifndef MOUSEOVERFILTER_H
#define MOUSEOVERFILTER_H
#include <QObject>
#include "ui_hwform.h"
#include "ui/page/AbstractPage.h"
class MouseOverFilter : public QObject
{
Q_OBJECT
public:
explicit MouseOverFilter(QObject *parent = 0);
void setUi(Ui_HWForm *uiForm);
protected:
bool eventFilter( QObject *dist, QEvent *event );
signals:
public slots:
private:
Ui_HWForm *ui;
};
#endif // MOUSEOVERFILTER_H