diff options
| author | manuel <manuel@mausz.at> | 2011-04-07 00:02:36 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2011-04-07 00:02:36 +0200 |
| commit | c1413464930fa82073800a6c58334099bbef370b (patch) | |
| tree | 53e3c33ac245f8531f858783d7da5e8b94ddd858 /pacman-c++/point.h | |
| parent | f2a7c8baea93aeffaddc8474e3b4d1a2d58d2516 (diff) | |
| download | foop-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.h | 14 |
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 | |||
| 6 | class Point | ||
| 7 | : public PixmapItem | ||
| 8 | { | ||
| 9 | public: | ||
| 10 | Point(QGraphicsItem *parent=0); | ||
| 11 | virtual ~Point() {}; | ||
| 12 | }; | ||
| 13 | |||
| 14 | #endif // POINT_H | ||
