CapDemo.Team_AudienceScreeen.HighLight C# (CSharp) Method

HighLight() public method

public HighLight ( bool toggle ) : void
toggle bool
return void
        public void HighLight(bool toggle)
        {
            if (toggle)
            {
                timerHighLight.Start();
            }
            else
            {
                timerHighLight.Stop();
            }
        }