(self)
| 194 | exit() |
| 195 | |
| 196 | def execute(self): |
| 197 | self.text(3) |
| 198 | while True: |
| 199 | for event in pygame.event.get(): |
| 200 | if event.type == pygame.QUIT: |
| 201 | exit() |
| 202 | self.controls(event) |
| 203 | self.buttons_func(event) |
| 204 | |
| 205 | self.objects() |
| 206 | |
| 207 | pygame.display.flip() |
| 208 | |
| 209 | |
| 210 | class Enemies: |
nothing calls this directly
no test coverage detected