| 960 | } |
| 961 | |
| 962 | ToolResult Micropolis::bulldozerTool(short x, short y) |
| 963 | { |
| 964 | ToolEffects effects(this); |
| 965 | |
| 966 | ToolResult result = bulldozerTool(x, y, &effects); |
| 967 | |
| 968 | if (result == TOOLRESULT_OK) { |
| 969 | effects.modifyWorld(); |
| 970 | } |
| 971 | |
| 972 | return result; |
| 973 | } |
| 974 | |
| 975 | /** |
| 976 | * Apply bulldozer tool. |
nothing calls this directly
no test coverage detected