def main():
"""pyFootball v.1 Early Alpha
A python based football management simulator,
very similar to and heavily based on Football Manager created by Sports
Interactive.
To start or load a game, run this file without any parameters.
Coded by Justin Auger
http://justnaugr.github.io\n
Credits to Click for the great CLI.
"""
start = click.prompt('Would you like to start a new game or load a saved game?', type=click.Choice(['new','load']))
if start=='new':
new_game()
elif start=='load':
load_game()
评论列表
文章目录