def start_game(): return oxo_logic.new_game()
def do_new(self, arg): self.game = oxo_logic.new_game() oxo_ui.play_game(self.game)
def ev_new(): global status status["text"] = "Playing game" game2cells(oxo_logic.new_game())
def do_new(self, arg): print("Starting new game") self.game = oxo_logic.new_game() oxo_ui.play_game(self.game)