Bot-Man-Toe/pyclient/games/__init__.py

13 lines
190 B
Python

"""
Entry point for collecting all known games
"""
from .game import FinishState, Game
from .tic_tac_toe import TicTacToe
__all__ = [
"FinishState",
"Game",
"TicTacToe",
]