summaryrefslogtreecommitdiffstats
path: root/pacman-c++/point.h
diff options
context:
space:
mode:
Diffstat (limited to 'pacman-c++/point.h')
-rw-r--r--pacman-c++/point.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/pacman-c++/point.h b/pacman-c++/point.h
new file mode 100644
index 0000000..847daed
--- /dev/null
+++ b/pacman-c++/point.h
@@ -0,0 +1,14 @@
1#ifndef POINT_H
2#define SPOINT_H
3
4#include "pixmapitem.h"
5
6class Point
7 : public PixmapItem
8{
9public:
10 Point(QGraphicsItem *parent=0);
11 virtual ~Point() {};
12};
13
14#endif // POINT_H