Link blocks to sprite/to other blocks
(self)
| 135 | _prim.link_using_sprite() |
| 136 | |
| 137 | def link_blocks(self): |
| 138 | """ |
| 139 | Link blocks to sprite/to other blocks |
| 140 | """ |
| 141 | for _block_id, _block in self.blocks.items(): |
| 142 | _block.link_using_sprite() |
| 143 | |
| 144 | def link_comments(self): |
| 145 | for _comment in self.comments: |
no test coverage detected