Skip to content

Package: KopfundZahlundKanteMove

KopfundZahlundKanteMove

Coverage

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