Commit b6423ad9 by BellCodeEditor

save project

parent e1de4c6d
Showing with 1 additions and 1 deletions
...@@ -31,7 +31,7 @@ while True: ...@@ -31,7 +31,7 @@ while True:
if event.type == locals.MOUSEBUTTONDOWN: if event.type == locals.MOUSEBUTTONDOWN:
if event.button == 1: if event.button == 1:
mouseX, mouseY = event.pos mouseX, mouseY = event.pos
if mouseX >= 220 and mouseX <= 320 and mouseY <= 380 and mouseY >= 280: if mouseX >= 220 and mouseX <= 320 and mouseY >= 280 and mouseY <= 380:
click = not click click = not click
if not click: if not click:
pygame.mixer.music.unpause() pygame.mixer.music.unpause()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment