Skip to content

Package: KopfundZahlundKanteGame

KopfundZahlundKanteGame

Coverage

1: package de.fhdw.gaming.ipspiel22.kopfundzahlundkante.domain;
2:
3: import de.fhdw.gaming.core.domain.Game;
4: import de.fhdw.gaming.ipspiel22.kopfundzahlundkante.moves.KopfundZahlundKanteMove;
5:
6: /**
7: * Represents a Head and Tail game.
8: */
9: public interface KopfundZahlundKanteGame extends Game<KopfundZahlundKantePlayer,
10: KopfundZahlundKanteState,
11: KopfundZahlundKanteMove,
12: KopfundZahlundKanteStrategy> {
13:
14: }