Skip to content

Package: IHTGame

IHTGame

Coverage

1: package de.fhdw.gaming.ipspiel23.ht.domain;
2:
3: import de.fhdw.gaming.core.domain.Game;
4: import de.fhdw.gaming.ipspiel23.ht.moves.IHTMove;
5: import de.fhdw.gaming.ipspiel23.ht.strategy.IHTStrategy;
6:
7: /**
8: * Represents the main game interface of Heads or Tails.
9: */
10: public interface IHTGame extends Game<IHTPlayer, IHTState, IHTMove, IHTStrategy> {
11: }