(self, display: pygame.Surface)
| 136 | return (self.speed_x, self.speed_y) |
| 137 | |
| 138 | def draw(self, display: pygame.Surface) -> None: |
| 139 | self.surface = display |
| 140 | pygame.draw.circle(self.surface, self.color, |
| 141 | (self.center_x, self.center_y), self.radius) |
| 142 | |
| 143 | def reset(self) -> None: |
| 144 | self.speed_x = 0 |
no outgoing calls
no test coverage detected