Skip to content

Package: MuenzwurfState

MuenzwurfState

Coverage

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