From b99dbb396c313f4b3130b566c0df42c10eec6084 Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 5 Jan 2023 11:35:28 +0000 Subject: Initial Commit --- main.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 main.py (limited to 'main.py') 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() -- cgit v1.2.1