blob: 132c06000cd8c405d156e57625088173ea811675 [file] [log] [blame]
#ifndef ObstacleDef
#define ObstacleDef
class Obstacle : public Cell {
public:
Obstacle(Coordinate &aCoord) : Cell(aCoord) {
image = ObstacleImage;
}
};
#endif