summaryrefslogtreecommitdiffstats
path: root/pacman-c++/actor.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-04 11:27:54 +0200
committermanuel <manuel@mausz.at>2011-04-04 11:27:54 +0200
commita35824a3319ae9c304263185c4efc449e2c2cf73 (patch)
treef769dc8e8e06265594b2f0e5bda47163428c47be /pacman-c++/actor.h
parent2a2c8d3b30e99e2bd636891a2eef27c0f35dcbc3 (diff)
downloadfoop-a35824a3319ae9c304263185c4efc449e2c2cf73.tar.gz
foop-a35824a3319ae9c304263185c4efc449e2c2cf73.tar.bz2
foop-a35824a3319ae9c304263185c4efc449e2c2cf73.zip
added simple pacman animation
Diffstat (limited to 'pacman-c++/actor.h')
-rw-r--r--pacman-c++/actor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/pacman-c++/actor.h b/pacman-c++/actor.h
index 5f68f8f..43314a9 100644
--- a/pacman-c++/actor.h
+++ b/pacman-c++/actor.h
@@ -22,7 +22,9 @@ public:
22 }; 22 };
23 23
24 Actor(Type type); 24 Actor(Type type);
25
25private: 26private:
27 QPixmap m_pix;
26 Type m_type; 28 Type m_type;
27 Movement m_direction; 29 Movement m_direction;
28}; 30};