(self)
| 148 | self.draw(self.surface) |
| 149 | |
| 150 | def get_borders(self) -> dict: |
| 151 | return { |
| 152 | 'left': self.center_x - self.radius, |
| 153 | 'right': self.center_x + self.radius, |
| 154 | 'top': self.center_y - self.radius, |
| 155 | 'bott': self.center_y + self.radius, |
| 156 | 'center_x': self.center_x, |
| 157 | 'center_y': self.center_y |
| 158 | } |
| 159 | |
| 160 | |
| 161 | class Gamer: |
no outgoing calls
no test coverage detected