Merge remote-tracking branch 'origin/main'
This commit is contained in:
		
						commit
						60d1c9a90b
					
				| 
						 | 
				
			
			@ -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