Skip to content

Package: OthelloGame

OthelloGame

Coverage

1: package de.fhdw.gaming.othello.core.domain;
2:
3: import de.fhdw.gaming.core.domain.Game;
4: import de.fhdw.gaming.othello.core.moves.OthelloMove;
5:
6: /**
7: * Represents an Othello game.
8: */
9: public interface OthelloGame extends Game<OthelloPlayer, OthelloState, OthelloMove, OthelloStrategy> {
10:
11: /**
12: * Returns the number of rows (or columns) of this board.
13: */
14: int getBoardSize();
15: }