hide the cursor

This commit is contained in:
Nicholas Dyer 2023-02-19 14:37:27 -05:00
parent 7c29cdb883
commit 48d1736bcf

View File

@ -19,6 +19,8 @@ def main():
while running:
clock.tick(60)
pygame.mouse.set_visible(False)
for keyboard_event in pygame.event.get():
if keyboard_event.type == pygame.QUIT:
running = False