Package: FGMoveFactory
FGMoveFactory
Coverage
1:  package de.fhdw.gaming.ipspiel24.fg.moves.factory;
2: 
3: import de.fhdw.gaming.ipspiel24.fg.moves.FGMove;
4: 
5: /**
6:  * Allows to create FG moves.
7:  */
8: public interface FGMoveFactory {
9: 
10:     /**
11:      * Creates a move saying "yes".
12:      */
13:     FGMove createCinemaMove();
14: 
15:     /**
16:      * Creates a move saying "no".
17:      */
18:     FGMove createFootballMove();
19: }