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