public MyGuiScreenServerSave()
 {
     m_currentServerSaveScreen = new MyGuiScreenMessageBox(
         timeoutInMiliseconds: m_timeoutInSeconds,
         styleEnum: MyMessageBoxStyleEnum.BLUE,
         buttonType: MyMessageBoxButtonsType.NONE_TIMEOUT,
         messageText: new StringBuilder(MyTextsWrapper.GetString(MyTextsWrapperEnum.SavingPleaseWait)),
         callback: (result) =>
     {
         CloseWindow = true;
     });
     m_currentServerSaveScreen.InstantClose = false;
     MyGuiSandbox.AddScreen(m_currentServerSaveScreen);
     CloseWindow    = false;
     SkipTransition = true;
 }