diff options
| author | manuel <manuel@mausz.at> | 2011-04-06 14:32:09 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2011-04-06 14:32:09 +0200 |
| commit | 6dc8b50817fe5da8550c245db755f7014402c62a (patch) | |
| tree | c2c657b7f7103c436003788d4f0b45758cb2dfd8 /pacman-c++/actor.h | |
| parent | 3cdc77bc7d1da312a0c7ae9c734f6a33f1c49ecf (diff) | |
| download | foop-6dc8b50817fe5da8550c245db755f7014402c62a.tar.gz foop-6dc8b50817fe5da8550c245db755f7014402c62a.tar.bz2 foop-6dc8b50817fe5da8550c245db755f7014402c62a.zip | |
some minor cleanup
Diffstat (limited to 'pacman-c++/actor.h')
| -rw-r--r-- | pacman-c++/actor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pacman-c++/actor.h b/pacman-c++/actor.h index c94be3c..b9e050d 100644 --- a/pacman-c++/actor.h +++ b/pacman-c++/actor.h | |||
| @@ -16,13 +16,13 @@ public: | |||
| 16 | Down | 16 | Down |
| 17 | }; | 17 | }; |
| 18 | 18 | ||
| 19 | Actor(Color color, QGraphicsItem *parent = 0); | 19 | Actor(Color::Color color, QGraphicsItem *parent = 0); |
| 20 | PixmapItem &getIcon(); | 20 | PixmapItem &getIcon(); |
| 21 | Color getColor() { return m_color; } | 21 | Color::Color getColor() { return m_color; } |
| 22 | 22 | ||
| 23 | private: | 23 | private: |
| 24 | QPixmap m_pix; | 24 | QPixmap m_pix; |
| 25 | Color m_color; | 25 | Color::Color m_color; |
| 26 | Movement m_direction; | 26 | Movement m_direction; |
| 27 | PixmapItem m_icon; | 27 | PixmapItem m_icon; |
| 28 | }; | 28 | }; |
