Skip to content

Package: VierGewinntGame

VierGewinntGame

Coverage

1: package de.fhdw.gaming.ipspiel21.viergewinnt.core.domain;
2:
3: import de.fhdw.gaming.core.domain.Game;
4: import de.fhdw.gaming.ipspiel21.viergewinnt.core.domain.moves.VierGewinntMove;
5:
6: /**
7: * Interface for a VierGewinntGame.
8: *
9: * @author Robby Rabbitman
10: *
11: */
12: public interface VierGewinntGame
13: extends Game<VierGewinntPlayer, VierGewinntState, VierGewinntMove, VierGewinntStrategy> {
14:
15: }