From e54ac640f1d3f7071a48032e924b04529cbd358f Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 31 Aug 2023 21:00:30 +0200 Subject: Initial commit --- src/window.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/window.py (limited to 'src/window.py') diff --git a/src/window.py b/src/window.py new file mode 100644 index 0000000..fd35f39 --- /dev/null +++ b/src/window.py @@ -0,0 +1,6 @@ +import pygame + +def init(): + pygame.display.set_caption("Blocks") + pygame.mouse.set_visible(False) + pygame.mouse.set_pos((0, 0)) \ No newline at end of file -- cgit