diff options
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 | }; |
