File size: 155 Bytes
df50319
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from tic_tac_toe.game_controller import GameController

def main():
    game = GameController()
    game.play_game()

if __name__ == "__main__":
    main()