(x, y)
| 33 | |
| 34 | |
| 35 | def instructionIMG(x, y): |
| 36 | instruct = pygame.image.load("instruction.png") |
| 37 | run = True |
| 38 | while run: |
| 39 | screen.blit(instruct, (x, y)) |
| 40 | pygame.display.update() |
| 41 | for event in pygame.event.get(): |
| 42 | if event.type == pygame.QUIT: |
| 43 | run = False |
| 44 | |
| 45 | |
| 46 | def aboutIMG(x, y): |