Skip to contentMethod: create(IHTMoveFactory)
      1: package de.fhdw.gaming.ipspiel23.ht.strategy.impl.mixed;
2: 
3: import de.fhdw.gaming.ipspiel23.ht.moves.factory.IHTMoveFactory;
4: import de.fhdw.gaming.ipspiel23.ht.strategy.IHTStrategy;
5: import de.fhdw.gaming.ipspiel23.ht.strategy.IHTStrategyFactory;
6: 
7: /**
8:  * 
9:  *Implements {@link IHTStrategyFactory} by creating a {@link HTMixedStrategy}. 
10:  */
11: public class HTMixedStrategyFactory implements IHTStrategyFactory {
12: 
13:     @Override
14:     public IHTStrategy create(final IHTMoveFactory moveFactory) {
15:         return new HTMixedStrategy(moveFactory);
16:     }
17: }