summaryrefslogtreecommitdiffstats
path: root/pacman-c++/point.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-07 00:02:36 +0200
committermanuel <manuel@mausz.at>2011-04-07 00:02:36 +0200
commitc1413464930fa82073800a6c58334099bbef370b (patch)
tree53e3c33ac245f8531f858783d7da5e8b94ddd858 /pacman-c++/point.h
parentf2a7c8baea93aeffaddc8474e3b4d1a2d58d2516 (diff)
downloadfoop-c1413464930fa82073800a6c58334099bbef370b.tar.gz
foop-c1413464930fa82073800a6c58334099bbef370b.tar.bz2
foop-c1413464930fa82073800a6c58334099bbef370b.zip
adding normal points
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