Пример #1
0
 public override void Stop()
 {
     if (m_thread != null)
     {
         m_thread.Close();
         m_thread = null;
     }
 }
Пример #2
0
        public override void Start()
        {
            FlightGearSettings settings;

            m_thread = new FlightGearThread();

            settings = ModuleSettings.GetSettings <FlightGearSettings>();
            m_thread.Configure(settings);
            m_thread.Open();
        }