Skip to content

Package: FzgState

FzgState

Coverage

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