from src.game import Game def main(): print("Welcome to Rally Racer !") game: Game = Game() game.mainloop() if __name__ == "__main__": main()