summaryrefslogtreecommitdiffstats
path: root/pacman-c++/block.h
blob: 1e76aa91ebf029126467b7bbb81d9f971ec10569 (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 <map>

#include "pixmapitem.h"
#include "actor.h"


class Block
  : public PixmapItem {
public:
  Block(Actor::Type type);

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

#endif  // BLOCK_H