File size: 350 Bytes
e55fbd6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""Simulator for Tic-Tac-Toe.

This module implements the TicTacToeSimulator class, which simulates games of
Tic-Tac-Toe using the OpenSpiel framework.
"""

from simulators.base_simulator import GameSimulator

class TicTacToeSimulator(GameSimulator):
    """Simulator for Tic-Tac-Toe."""
    pass  # All functionality is inherited from GameSimulator