/// <summary>Enable Communications with the server. By default this is true</summary>
 /// <param name="value">True to enable comms, false otherwise.</param>
 public void EnableCommunications(bool value)
 {
     _comms.EnableComms(value);
 }
 /// <summary>Enable Communications with the server. By default this is true</summary>
 /// <param name="in_value">True to enable comms, false otherwise.</param>
 public void EnableCommunications(bool in_value)
 {
     m_bc.EnableComms(in_value);
 }