Skip to content

Package: IHTState

IHTState

Coverage

1: package de.fhdw.gaming.ipspiel23.ht.domain;
2:
3: import de.fhdw.gaming.core.domain.State;
4:
5: /**
6: * Represents a state of the Heads or Tails game.
7: */
8: public interface IHTState extends State<IHTPlayer, IHTState> {
9:
10: /**
11: * Returns the first player.
12: */
13: IHTPlayer getFirstPlayer();
14:
15: /**
16: * Returns the second player.
17: */
18: IHTPlayer getSecondPlayer();
19: }