draws all bricks onto screen.
(self)
| 248 | self._bricks.remove(brick) |
| 249 | |
| 250 | def draw(self): |
| 251 | """ |
| 252 | draws all bricks onto screen. |
| 253 | """ |
| 254 | for brick in self._bricks: |
| 255 | if brick != None: |
| 256 | brick.draw() |
| 257 | |
| 258 | def update(self, ball): |
| 259 | """ |