Skip to content

Package: KopfundZahlStrategy

KopfundZahlStrategy

Coverage

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