Hide mouse so I can take a nice screenshot

This commit is contained in:
Thomas Forgione 2019-03-13 22:35:15 +01:00
parent 9d7f7c356f
commit 9153d5a7c1
No known key found for this signature in database
GPG Key ID: BFD17A2D71B3B5E7
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ def main():
# Create a window for the game so the players can see what they're doing.
window = Window(game, 10)
# Hide mouse
pygame.mouse.set_visible(False)
# Run the game.
game.main_loop(window)