tkinter-space-game/main.py
2023-01-05 11:35:28 +00:00

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()