Ejemplo n.º 1
0
 def create_start_game() -> Game:
     start_board = Board.create_start_board()
     return Game(start_board, Colour.WHITE)
Ejemplo n.º 2
0
 def test_create_start_board(self):
     start_board = Board.create_start_board()
     assert start_board is not None
Ejemplo n.º 3
0
def main():
    _ = Board.create_start_board()
    _ = Game.create_start_game()