Skip to content

Package: VGGame

VGGame

Coverage

1: package de.fhdw.gaming.ipspiel22.vierGewinnt.domain;
2:
3: import de.fhdw.gaming.core.domain.Game;
4: import de.fhdw.gaming.ipspiel22.vierGewinnt.moves.VGMove;
5:
6: /**
7: * Represents a Vier gewinnt game.
8: */
9: public interface VGGame extends Game<VGPlayer, VGState, VGMove, VGStrategy> {
10:
11: }