示例#1
0
 def do_resume(self, arg):
     self.game = oxo_logic.restore_game()
     oxo_ui.play_game(self.game)
示例#2
0
 def do_resume(self, arg):
     print("Restoring previous game")
     self.game = oxo_logic.restore_game()
     oxo_ui.play_game(self.game)
示例#3
0
 def do_new(self, arg):
     self.game = oxo_logic.new_game()
     oxo_ui.play_game(self.game)
示例#4
0
 def do_new(self, arg):
     print("Starting new game")
     self.game = oxo_logic.new_game()
     oxo_ui.play_game(self.game)