From 9153d5a7c1281632eebad49430ddcd04362fe094 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Wed, 13 Mar 2019 22:35:15 +0100 Subject: [PATCH] Hide mouse so I can take a nice screenshot --- play.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/play.py b/play.py index 5bbbcc8..69181f5 100755 --- a/play.py +++ b/play.py @@ -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)