summaryrefslogtreecommitdiffstats
path: root/pacman-c++/block.h
blob: 034a626c842e4c38903bf80729ec46914294c5c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef BLOCK_H
#define BLOCK_H

#include "pixmapitem.h"
#include "constants.h"
#include <QMap>

class Block
  : public PixmapItem
{
public:
  Block(Color color, QGraphicsItem *parent=0);

 private:
   // map for saving QPixmaps for reuse
   static QMap<Color, QPixmap> m_pixmaps;
};

#endif  // BLOCK_H