Skip to contentPackage: KopfundZahlMoveFactory
KopfundZahlMoveFactory
Coverage
      1: package de.fhdw.gaming.ipspiel22.kopfundzahl.moves.factory;
2: 
3: import de.fhdw.gaming.ipspiel22.kopfundzahl.moves.KopfundZahlMove;
4: 
5: /**
6:  * Allows to create moves for Head and Tail.
7:  */
8: public interface KopfundZahlMoveFactory {
9: 
10:     /**
11:      * Creates a move in which the player choose "head".
12:      */
13:     KopfundZahlMove createHeadMove();
14: 
15:     /**
16:      * Creates a move in which the player choose "tail".
17:      */
18:     KopfundZahlMove createTailMove();
19: }