GR.Gambling.Backgammon.GameState.ChangeTurn C# (CSharp) Method

ChangeTurn() public method

Flips the current player on roll and sets the roller also as the player on turn, resets the dice.
public ChangeTurn ( ) : void
return void
        public void ChangeTurn()
        {
            Unroll();
            player_on_roll = 1 - player_on_roll;
            player_on_turn = player_on_roll;
        }