Skip to content

Package: IC4Move

IC4Move

Coverage

1: package de.fhdw.gaming.ipspiel23.c4.moves;
2:
3: import de.fhdw.gaming.core.domain.Move;
4: import de.fhdw.gaming.ipspiel23.c4.domain.IC4Position;
5: import de.fhdw.gaming.ipspiel23.c4.domain.IC4Player;
6: import de.fhdw.gaming.ipspiel23.c4.domain.IC4State;
7:
8: /**
9: * A move in the game Connect Four.
10: */
11: public interface IC4Move extends Move<IC4Player, IC4State> {
12:
13: /**
14: * Gets the position targeted by this move.
15: */
16: IC4Position getTargetPosition();
17: }
18: