예제 #1
0
def load():
	global chapter_on
	saves = engine.get_saves()
	options = []
	for save in saves:
		options += [save[1] + '-----\t' + save[2]]
	show_options(options, load_E, False)
	return -1
예제 #2
0
def load():
	output('This is saves:', foreGroundColor.DARKSKYBLUE)
	saves = engine.get_saves()
	for save in saves:
		output(str(save[0]), foreGroundColor.PINK, ' ')
		output(save[1], foreGroundColor.PURPLE, ' ')
		output(save[2], foreGroundColor.YELLOW)
	i = int(input('choose your save'))
	return engine.load(i-1)