MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / aboutIMG

Function aboutIMG

projects/car game/Game.py:46–54  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

44
45
46def 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
57def play(x, y):

Callers 1

introscreenFunction · 0.85

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected