From 41a31420cf091aeb4e986503387855d41e550106 Mon Sep 17 00:00:00 2001 From: manuel Date: Mon, 25 Apr 2011 14:39:00 +0200 Subject: - add intro sound on every round - add dieing sound - add dieing animation - add die on moving onto colorized block --- pacman-c++/gameentity.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pacman-c++/gameentity.cpp') diff --git a/pacman-c++/gameentity.cpp b/pacman-c++/gameentity.cpp index 156deda..e73e759 100644 --- a/pacman-c++/gameentity.cpp +++ b/pacman-c++/gameentity.cpp @@ -1,9 +1,9 @@ #include "gameentity.h" GameEntity::GameEntity(Color::Color color, QGraphicsItem *parent) - : PixmapItem(parent), m_type(Type), m_eaten(false), m_color(color) + : PixmapItem(parent), m_type(Type), m_color(color) {} GameEntity::GameEntity(QGraphicsItem *parent) - : PixmapItem(parent), m_type(Type), m_eaten(false), m_color(Color::none) + : PixmapItem(parent), m_type(Type), m_color(Color::none) {} -- cgit v1.2.3