diff options
author | RaindropsSys <contact@minteck.org> | 2023-08-31 21:00:30 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-08-31 21:00:30 +0200 |
commit | e54ac640f1d3f7071a48032e924b04529cbd358f (patch) | |
tree | 91efa742451921231e0695a5b5c99a1c4fac19f9 /src/window.py | |
download | blocks-e54ac640f1d3f7071a48032e924b04529cbd358f.tar.gz blocks-e54ac640f1d3f7071a48032e924b04529cbd358f.tar.bz2 blocks-e54ac640f1d3f7071a48032e924b04529cbd358f.zip |
Initial commit
Diffstat (limited to 'src/window.py')
-rw-r--r-- | src/window.py | 6 |
1 files changed, 6 insertions, 0 deletions
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 |