mirror of
https://git.davidovski.xyz/tkinter-space-game.git
synced 2024-08-15 00:43:41 +00:00
13 lines
198 B
Python
Executable file
13 lines
198 B
Python
Executable file
#!/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()
|