Added player switches
This commit is contained in:
parent
d6c225a5aa
commit
68cc2402b4
|
@ -59,6 +59,12 @@ public class SiedlerGame {
|
|||
*/
|
||||
public void switchToNextPlayer() {
|
||||
// TODO: Implement
|
||||
if (activePlayer < allPlayers.size()){
|
||||
activePlayer++;
|
||||
}
|
||||
else if (activePlayer == allPlayers.size()){
|
||||
activePlayer = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -66,6 +72,12 @@ public class SiedlerGame {
|
|||
*/
|
||||
public void switchToPreviousPlayer() {
|
||||
// TODO: Implement
|
||||
if (activePlayer > 0){
|
||||
activePlayer--;
|
||||
}
|
||||
else if (activePlayer == 0){
|
||||
activePlayer = allPlayers.size()-1;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue