TurnManager.StartTurnForTeamB C# (CSharp) Method

StartTurnForTeamB() public method

public StartTurnForTeamB ( ) : void
return void
    public void StartTurnForTeamB()
    {
        this.activePlayer = this.playerForTeamB;

        if(this.activePlayer != null) {
            this.activePlayer.OnStartTurn();
        }
    }