From 5480580d5c2fa40787a70dfdb68b52216917c58b Mon Sep 17 00:00:00 2001 From: manuel Date: Sun, 3 Apr 2011 17:32:48 +0200 Subject: fix intend --- pacman-c++/actor.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'pacman-c++/actor.h') diff --git a/pacman-c++/actor.h b/pacman-c++/actor.h index 753c920..5f68f8f 100644 --- a/pacman-c++/actor.h +++ b/pacman-c++/actor.h @@ -4,27 +4,27 @@ #include "pixmapitem.h" class Actor - : public PixmapItem + : public PixmapItem { public: - enum Movement { - None = 0, - Left, - Right, - Up, - Down - }; + enum Movement { + None = 0, + Left, + Right, + Up, + Down + }; - enum Type { - Player1 = 1, - Player2, - Player3, - }; + enum Type { + Player1 = 1, + Player2, + Player3, + }; - Actor(Type type); + Actor(Type type); private: - Type m_type; - Movement m_direction; + Type m_type; + Movement m_direction; }; #endif // ACTOR_H -- cgit v1.2.3