blob: f0fc550325bc92059b967435ee4fe8544f5bfaf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef BONUSPOINT_H
#define BONUSPOINT_H
#include "pixmapitem.h"
class BonusPoint
: public PixmapItem
{
public:
BonusPoint(QGraphicsItem *parent=0);
virtual ~BonusPoint() {};
};
#endif // BONUSPOINT_H
|