aboutsummaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py9
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