blob: f8b9e3572f97cf53630794e0b2b88839a97d9a27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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()
|