Skip to content

Package: FGMove

FGMove

Coverage

1: package de.fhdw.gaming.ipspiel24.fg.moves;
2:
3: import de.fhdw.gaming.core.domain.Move;
4: import de.fhdw.gaming.ipspiel24.fg.domain.FGPlayer;
5: import de.fhdw.gaming.ipspiel24.fg.domain.FGState;
6:
7: /**
8: * Represents a move of the FG game.
9: */
10:
11: public interface FGMove extends Move<FGPlayer, FGState> {
12:
13: }