* Whether this tile has a big wall. * @return bool */
| 266 | * @return bool |
| 267 | */ |
| 268 | bool Tile::isBigWall() const |
| 269 | { |
| 270 | if (_objects[MapData::O_OBJECT]) |
| 271 | return (_objects[MapData::O_OBJECT]->getBigWall() != 0); |
| 272 | else |
| 273 | return false; |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * If an object stand on this tile, this returns how high the unit is it standing. |
nothing calls this directly
no test coverage detected