summaryrefslogtreecommitdiffstats
path: root/pacman-c++/gameentity.cpp
blob: 9dc72ecbe682fb79a39c343a7e4b138c1f65493d (plain)
1
2
3
4
5
6
7
8
9
#include "gameentity.h"

GameEntity::GameEntity(Color::Color color, QGraphicsItem *parent)
  : PixmapItem(parent), m_eaten(false), m_color(color)
{}

GameEntity::GameEntity(QGraphicsItem *parent)
  : PixmapItem(parent), m_eaten(false), m_color(Color::none)
{}