0x004FD180
| 368 | |
| 369 | // 0x004FD180 |
| 370 | PaintStruct* PaintSession::addToPlotListTrackRoadAddition(ImageId imageId, uint32_t priority, const World::Pos3& offset, const World::Pos3& boundBoxOffset, const World::Pos3& boundBoxSize) |
| 371 | { |
| 372 | _lastPS = nullptr; |
| 373 | |
| 374 | auto* ps = createNormalPaintStruct(imageId, offset, boundBoxOffset, boundBoxSize); |
| 375 | if (ps != nullptr) |
| 376 | { |
| 377 | _lastPS = ps; |
| 378 | auto* lastTRS = _trackRoadAdditionsPaintStructs[priority]; |
| 379 | _trackRoadAdditionsPaintStructs[priority] = ps; |
| 380 | ps->children = lastTRS; |
| 381 | } |
| 382 | |
| 383 | return ps; |
| 384 | } |
| 385 | |
| 386 | // 0x0045E779 |
| 387 | AttachedPaintStruct* PaintSession::attachToPrevious(ImageId imageId, const Ui::Point& offset) |
no outgoing calls
no test coverage detected