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

#include "pixmapitem.h"

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

  virtual void enter(Actor *actor);
};

#endif // POINT_H