void IMyUtilities.ShowNotification(string message, int disappearTimeMs, Common.MyFontEnum font)
        {
            var not = new MyHudNotification(MySpaceTexts.CustomText, disappearTimeMs, font);

            not.SetTextFormatArguments(message);
            MyHud.Notifications.Add(not);
        }
        IMyHudNotification IMyUtilities.CreateNotification(string message, int disappearTimeMs, Common.MyFontEnum font)
        {
            var notification = new MyHudNotification(MySpaceTexts.CustomText, disappearTimeMs, font);

            notification.SetTextFormatArguments(message);
            return(notification as IMyHudNotification);
        }