bloxstrap/Bloxstrap/Models/WatcherData.cs
pizzaboxer aac6ec3d4c
Improve watcher/failed launch handling
Bloxstrap now attempts to identify the log file *when* Roblox launches, then passes it to the watcher
It does this so that it can determine if Roblox fails to launch
2024-10-12 17:37:25 +01:00

12 lines
221 B
C#

namespace Bloxstrap.Models
{
internal class WatcherData
{
public int ProcessId { get; set; }
public string? LogFile { get; set; }
public List<int>? AutoclosePids { get; set; }
}
}