Skip to content

Package: KopfundZahlundKanteState

KopfundZahlundKanteState

Coverage

1: package de.fhdw.gaming.ipspiel22.kopfundzahlundkante.domain;
2:
3: import de.fhdw.gaming.core.domain.State;
4:
5: /**
6: * Represents the state of a the Head and Tail game.
7: */
8: public interface KopfundZahlundKanteState extends State<KopfundZahlundKantePlayer, KopfundZahlundKanteState> {
9:
10: /**
11: * Returns the first player.
12: */
13: KopfundZahlundKantePlayer getFirstPlayer();
14:
15: /**
16: * Returns the second player.
17: */
18: KopfundZahlundKantePlayer getSecondPlayer();
19: }