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

8 lines
188 B
C#
Raw Normal View History

2025-06-17 21:07:32 +03:00
namespace Nebula.Launcher.ProcessHelper;
public interface IProcessLogConsumer
{
public void Out(string text);
public void Error(string text);
public void Fatal(string text);
}