Ejemplo n.º 1
0
    public void AddPathfindingThread(GetPathThread thread)
    {
        //Add the thread to the list and start it
        m_PathFindingThreads.Add(thread);

        thread.Start();
    }
 public void AddPathfindingThread(GetPathThread thread)
 {
     //Add the thread to the list and start it
     m_PathFindingThreads.Add (thread);
     thread.Start ();
 }