Skip to content

Package: IHTStrategy

IHTStrategy

Coverage

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