#ifndef BLOCK_H #define BLOCK_H #include #include "pixmapitem.h" #include "actor.h" class Block : public PixmapItem { public: Block(Actor::Type type); private: // map for saving QPixmaps for reuse std::map m_pixmaps; }; #endif // BLOCK_H