CrewChiefV3.CrewChief.startSpotterThread C# (CSharp) Method

startSpotterThread() private method

private startSpotterThread ( ) : void
return void
        private void startSpotterThread()
        {
            if (spotter != null)
            {
                lastSpotterState = null;
                currentSpotterState = null;
                spotterIsRunning = true;
                ThreadStart work = spotterWork;
                Thread thread = new Thread(work);
                runSpotterThread = true;
                thread.Start();
            }
        }