Skip to content

Package: KopfundZahlGame

KopfundZahlGame

Coverage

1: package de.fhdw.gaming.ipspiel22.kopfundzahl.domain;
2:
3: import de.fhdw.gaming.core.domain.Game;
4: import de.fhdw.gaming.ipspiel22.kopfundzahl.moves.KopfundZahlMove;
5:
6: /**
7: * Represents a Head and Tail game.
8: */
9: public interface KopfundZahlGame extends Game<KopfundZahlPlayer, KopfundZahlState, KopfundZahlMove,
10: KopfundZahlStrategy> {
11:
12: }