(x, y)
| 44 | |
| 45 | |
| 46 | def aboutIMG(x, y): |
| 47 | aboutimg = pygame.image.load("About.png") |
| 48 | run = True |
| 49 | while run: |
| 50 | screen.blit(aboutimg, (x, y)) |
| 51 | pygame.display.update() |
| 52 | for event in pygame.event.get(): |
| 53 | if event.type == pygame.QUIT: |
| 54 | run = False |
| 55 | |
| 56 | |
| 57 | def play(x, y): |