| 496 | } |
| 497 | |
| 498 | static bool is_tree(const df::tiletype *tt) { |
| 499 | return tileMaterial(*tt) == tiletype_material::TREE; |
| 500 | } |
| 501 | |
| 502 | static bool is_tree_trunk(const df::tiletype *tt) { |
| 503 | return is_tree(tt) && tileShape(*tt)== tiletype_shape::WALL; |
no test coverage detected