Spaces:
Sleeping
Sleeping
"""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 | |