public override void Stop() { if (m_thread != null) { m_thread.Close(); m_thread = null; } }
public override void Start() { FlightGearSettings settings; m_thread = new FlightGearThread(); settings = ModuleSettings.GetSettings <FlightGearSettings>(); m_thread.Configure(settings); m_thread.Open(); }