summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authordavidovski <david@sendula.com>2023-01-05 11:35:28 +0000
committerdavidovski <david@sendula.com>2023-01-05 11:35:28 +0000
commitb99dbb396c313f4b3130b566c0df42c10eec6084 (patch)
treeffd2bbebe47f66fd1c21000b371ebc897ef84e34 /main.py
Initial CommitHEADmain
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100755
index 0000000..f8b9e35
--- /dev/null
+++ b/main.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python3
+
+from shooter_game import ShooterGame
+
+
+def main():
+ """The entry function to the game"""
+ game = ShooterGame()
+ game.start()
+
+
+if __name__ == "__main__":
+ main()