summaryrefslogtreecommitdiffstats
path: root/pacman-c++/bonuspoint.h
blob: 2c5f7eaff9acff8f9f26031f07d4ccbec01d87ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BONUSPOINT_H
#define BONUSPOINT_H

#include "pixmapitem.h"

class BonusPoint
  : public PixmapItem
{
public:
  BonusPoint(QGraphicsItem *parent=0);
  virtual ~BonusPoint()
  {};

  virtual void enter(Actor *actor);
};

#endif // BONUSPOINT_H