diff options
| author | Leander <80996591+m0ntagur@users.noreply.github.com> | 2023-01-23 15:31:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-23 15:31:30 +0100 |
| commit | 7ea8f8fd31c8a39876cf115cd168ba6654ec98c6 (patch) | |
| tree | 2293019a8e63b36ddb9a6b2b5b69ee50850f973f /__init__.py | |
Add files via upload
Diffstat (limited to '__init__.py')
| -rw-r--r-- | __init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..adf7a03 --- /dev/null +++ b/__init__.py @@ -0,0 +1,9 @@ +import pygame
+from Steuerung import Steuerung
+
+pygame.init()
+
+dieSteuerung = Steuerung()
+dieSteuerung.loop()
+
+pygame.quit()
\ No newline at end of file |
