Ejemplo n.º 1
0
 private void GuiOff()
 {
     if (_logisticsMasterView == null)
     {
         _logisticsMasterView = new MKSLogisticsMasterView(this);
     }
     _logisticsMasterView.SetVisible(false);
 }
Ejemplo n.º 2
0
 private void ToggleGui()
 {
     if (_logisticsMasterView == null)
     {
         _logisticsMasterView = new MKSLogisticsMasterView(this);
     }
     _logisticsMasterView.ToggleVisible();
 }