blob: 17f590303b9cfb7a41db4585012edd119ab5b452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef BLOCK_H
#define BLOCK_H
#include "pixmapitem.h"
#include "actor.h"
class Block
: public PixmapItem {
public:
Block(Actor::Type type);
};
#endif // BLOCK_H
|