draws the brick onto screen. color: rgb(56, 177, 237)
(self)
| 154 | self.__isInGroup = False |
| 155 | |
| 156 | def draw(self): |
| 157 | """ |
| 158 | draws the brick onto screen. |
| 159 | color: rgb(56, 177, 237) |
| 160 | """ |
| 161 | pygame.draw.rect( |
| 162 | screen, |
| 163 | (56, 177, 237), |
| 164 | (self._xLoc, self._yLoc, self._width, self._height), |
| 165 | 0, |
| 166 | ) |
| 167 | |
| 168 | def add(self, group): |
| 169 | """ |