0x00462B4F
| 209 | |
| 210 | // 0x00462B4F |
| 211 | static ClearFuncResult callClearFunction(TileElement& el, const std::function<ClearFuncResult(TileElement& el)>& clearFunc) |
| 212 | { |
| 213 | if (!clearFunc) |
| 214 | { |
| 215 | return ClearFuncResult::collision; |
| 216 | } |
| 217 | return clearFunc(el); |
| 218 | }; |
| 219 | |
| 220 | enum class BuildingCollisionType : bool |
| 221 | { |
no outgoing calls
no test coverage detected