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