Skip to content

Package: KopfundZahlMove

KopfundZahlMove

Coverage

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