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


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


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

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

#endif  // BLOCK_H