TurnManager.ReportTurnFinished C# (CSharp) Method

ReportTurnFinished() public method

public ReportTurnFinished ( ) : void
return void
    public void ReportTurnFinished()
    {
        this.turnCount++;

        if(this.IsTeamATurn()) {
            this.activePlayer.OnFinishedTurn();
            this.StartTurnForTeamA();
        }

        else if(this.IsTeamBTurn()) {
            this.activePlayer.OnFinishedTurn();
            this.StartTurnForTeamB();
        }
    }