Skip to content

Package: FGState

FGState

Coverage

1: package de.fhdw.gaming.ipspiel24.fg.domain;
2:
3: import de.fhdw.gaming.core.domain.State;
4:
5: /**
6: * Represents the state of a Freizeigestaltung game.
7: */
8: public interface FGState extends State<FGPlayer, FGState> {
9:
10: /**
11: * Returns the first player.
12: */
13: FGPlayer getFirstPlayer();
14:
15: /**
16: * Returns the second player.
17: */
18: FGPlayer getSecondPlayer();
19: }