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

#include "gameentity.h"

class Point
  : public GameEntity
{
public:
  Point(QGraphicsItem *parent=0);
  virtual ~Point()
  {};

  virtual bool enter(Actor *actor);

  virtual void onDie(Actor *actor);
};

#endif // POINT_H