Skip to content

Package: KopfundZahlundKanteMoveFactory

KopfundZahlundKanteMoveFactory

Coverage

1: package de.fhdw.gaming.ipspiel22.kopfundzahlundkante.moves.factory;
2:
3: import de.fhdw.gaming.ipspiel22.kopfundzahlundkante.moves.KopfundZahlundKanteMove;
4:
5: /**
6: * Allows to create moves for Head and Tail.
7: */
8: public interface KopfundZahlundKanteMoveFactory {
9:
10: /**
11: * Creates a move in which the player choose "head".
12: */
13: KopfundZahlundKanteMove createHeadMove();
14:
15: /**
16: * Creates a move in which the player choose "tail".
17: */
18: KopfundZahlundKanteMove createTailMove();
19:
20: /**
21: * Creates a move in which the player choose "edge".
22: */
23: KopfundZahlundKanteMove createEdgeMove();
24: }