Files
NebulaLauncher/Nebula.Launcher/ProcessHelper/IProcessRunner.cs

9 lines
202 B
C#
Raw Normal View History

2025-06-17 21:07:32 +03:00
using System.Diagnostics;
using System.Threading.Tasks;
namespace Nebula.Launcher.ProcessHelper;
public interface IProcessStartInfoProvider
{
public Task<ProcessStartInfo> GetProcessStartInfo();
}