kenken999's picture
update
b97a3a5
raw
history blame
155 Bytes
from tic_tac_toe.game_controller import GameController
def main():
game = GameController()
game.play_game()
if __name__ == "__main__":
main()