Skip to content

Package: IC4StrategyFactory

IC4StrategyFactory

Coverage

1: package de.fhdw.gaming.ipspiel23.c4.strategies;
2:
3: import de.fhdw.gaming.ipspiel23.c4.moves.factory.IC4MoveFactory;
4:
5: /**
6: * Represents a factory creating Connect Four strategies.
7: */
8: @FunctionalInterface
9: public interface IC4StrategyFactory {
10: /**
11: * Creates a Connect Four strategy.
12: * @param moveFactory The {@link IC4MoveFactory} to use.
13: * @return The Connect Four strategy.
14: */
15: IC4Strategy create(IC4MoveFactory moveFactory);
16: }