Skip to content

Package: GDState

GDState

Coverage

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