AcManager.Tools.GameProperties.RhmService.EnsureRunned C# (CSharp) 메소드

EnsureRunned() 개인적인 메소드

private EnsureRunned ( bool keepVisible = false ) : bool
keepVisible bool
리턴 bool
        private bool EnsureRunned(bool keepVisible = false) {
            if (SettingsHolder.Drive.RhmLocation == null) return false;

            if (_process == null || _process.HasExitedSafe()) {
                DisposeHelper.Dispose(ref _process);
                if (!RunRhm(keepVisible)) return false;
            }

            return true;
        }