blob: 4bb55bcd654bf1c8f184be54d9c52608708eb0df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package jrummikub.model;
/**
* Class that stores information for a game of multiple rounds
*/
public class GameState {
private int firstRoundFirstPlayer;
/**
* Gets the number of the first player of the first round
* @return the number of the first player of the first round
*/
public int getFirstRoundFirstPlayer() {
return firstRoundFirstPlayer;
}
/**
* Sets the number of the first player of the first round
* @param firstRoundFirstPlayer the number of the first player of the first round
*/
public void setFirstRoundFirstPlayer(int firstRoundFirstPlayer) {
this.firstRoundFirstPlayer = firstRoundFirstPlayer;
}
}
|