public static void Initialize(bool testMode = false)
        {
            useTestMode = testMode;

            if (!useTestMode)
            {
                dmClient   = new ManagedDMClient();
                dmCommands = new DMCommands(dmClient);
            }
        }
Exemple #2
0
 public AutopilotDMClient()
 {
     dmClient = new ManagedDMClient();
 }