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