| 68 | } |
| 69 | |
| 70 | void FallingBlocksAgent::visitLocation(Vec2I const& location) { |
| 71 | visitRegion(RectI::withSize(location, Vec2I(1, 1))); |
| 72 | } |
| 73 | |
| 74 | void FallingBlocksAgent::visitRegion(RectI const& region) { |
| 75 | for (int x = region.xMin() - 1; x <= region.xMax(); ++x) { |
no outgoing calls
no test coverage detected