Skip to content

Package: KopfundZahlundKanteStrategy

KopfundZahlundKanteStrategy

Coverage

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