Skip to contentPackage: FzgStrategyFactory
FzgStrategyFactory
Coverage
      1: package de.fhdw.gaming.ipspiel23.freizeitgestaltung.domain.factory;
2: 
3: import de.fhdw.gaming.ipspiel23.freizeitgestaltung.domain.FzgStrategy;
4: import de.fhdw.gaming.ipspiel23.freizeitgestaltung.move.factory.AnswerFactory;
5: 
6: /**
7:  * Factory to create FzgStrategies.
8:  *
9:  */
10: public interface FzgStrategyFactory {
11: 
12:     /**
13:      * creates a Strategy.
14:      * @param answerFactory {@link AnswerFactory} to create the answer.
15:      * @return FzgStrategy
16:      */
17:     FzgStrategy create(AnswerFactory answerFactory);
18: }